/* --- REVIEWS MARQUEE --- */

/* === GLOBAL STYLES === */
/* === BACKGROUND IMAGE === */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    min-height: 100vh;
    background: url("photo/46f5829f-ca93-4682-8c78-248c522f0c70.jpg") no-repeat center center fixed;
    background-size: cover;
}
/* === Global page layout fix === */



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav img {
    height: 70px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;              /* pozwala produktom się zawijać */
    justify-content: center;      /* wyśrodkowanie w poziomie */
    gap: 20px;                    /* odstęp między produktami */
    max-width: 1200px;            /* szerokość całego kontenera */
    margin: 50px auto;            /* centrowanie na stronie */
    padding: 0 20px;              /* trochę paddingu po bokach */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    transition: color 0.2s ease;
}

.hide{
    gap: 10px  ;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    font-weight: 710;
}
.active{
    color: white;
    font-weight: 710;
}

.buttonB {
    background: #0078D7;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.buttonB:hover {
    background: #005fa3;
}

header {
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #ddd;
}

/* === REVIEWS MARQUEE FIXED AT BOTTOM === */
.reviews-marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
    z-index: 999;
   
    border-top: 1px solid rgba(255,255,255,0.1);
}


.reviews-track {
    gap: 15px;
  display: inline-flex;
  animation: scrollReviews 30s linear infinite;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 250px;
}

.review-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* --- REVIEWS PAGE --- */
.reviews-page {
    padding: 40px 20px;
    background: rgba(0,0,0,0.5);
    margin: 20px;
    border-radius: 10px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.reviews-list .review-item {
    justify-content: space-between;
    background: rgba(255,255,255,0.1);
}

/* --- CHECKOUT --- */
.checkout-page {
    padding: 40px 20px;
    background: rgba(0,0,0,0.5);
    margin: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-form label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 14px;
}

.checkout-form input {
    padding: 8px;
    border-radius: 5px;
    border: none;
    margin-top: 5px;
}

.checkout-summary {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.checkout-submit {
    background: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
/* === GLOBAL LAYOUT FIX === */
/* było: main, header, section { ... } */
main,
header,
main section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}


h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
}

/* === PRODUCTS SECTION ON MAIN === */
.products-section {
    text-align: center;
     margin-bottom: 80px; 
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* === PRODUKTY === */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    justify-items: center;
}

.product-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.product-info h3 {
    color: #0078D7;
    margin: 0;
    font-size: 1.2rem;

    font-weight: 700;
}

.stock {
    color: #bbb;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock span {
    color: #005fa3; /* fioletowy symbol ∞ */
    font-weight: bold;
}

.product-info .buy-btn {
    background: #00bfff;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.1s;
}

.product-info .buy-btn:hover {
    background: #0094cc;
    transform: scale(1.03);
}

.product-info .buy-btn:active {
    transform: scale(0.97);
}



/* === SOCIALS PAGE === */
.socials {
    text-align: center;
}
.aaa{
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.social-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.social-item img {
    width: 70px; /* zmniejszone zdjęcie */
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


/* === ABOUT PAGE === */
.about {
    max-width: 800px;
    margin: 40px auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    text-align: justify;
    color: #ddd;
}


/* === PROMO VIDEO SECTION === */
/* === PROMO VIDEO SECTION === */
.promo-video {
    display: flex;
    justify-content: center;
    margin: 80px auto 40px; /* ⬅️ zwiększony odstęp od góry (było np. 40px) */
    max-width: 1000px;
    padding: 0 15px;
}


.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* proporcje 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* === EXTRA SCROLL SPACE === */



/* --- FAQ SECTION --- */
.faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.faq-section h2 span {
    color: #00bfff;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '⌄';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* --- Reviews Section --- */
.reviews-section {
    background: transparent;
    padding: 60px 20px;
    overflow: hidden;
    color: white;
}

.reviews-header {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.reviews-header h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.reviews-header h2 span {
    color: #00bfff;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    animation: slideReviews 20s linear infinite;
}

.review-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 20px;
    min-width: 300px;
    max-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.stars {
    
    color: #00bfff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-card p {
    flex-grow: 1;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.8;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    25% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    75% { transform: translateX(-75%); }
    100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-header h2 {
        text-align: center;
    }
    .reviews-slider {
        animation-duration: 30s;
    }
}
/* --- Disclaimer Box --- */
.disclaimer-box {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.disclaimer-icon {
    height: 50px;
}

.disclaimer-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
    .disclaimer-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .disclaimer-icon {
        font-size: 1.8rem;
    }
}
/* --- Footer Bar --- */
.footer-bar {
    background: #0e0e0e;
    margin-top: 40px;
    padding-top: 20px;
    color: white;
    font-size: 0.9rem;
}

.footer-top {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method {
    color: #999;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.payment-method .bold {
    color: #fff;
    font-weight: 700;
}

.footer-bottom {
    max-width: 1200px;
    margin: 15px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 20px 20px 20px;
    font-size: 0.85rem;
}

.footer-left {
    opacity: 0.85;
}

.footer-right a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-right a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-right a {
        margin: 0 8px;
    }
}
/* --- Terms Page --- */
.terms-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    color: #ddd;
}

.terms-page h1 {
    text-align: center;
    color: #00bfff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.terms-intro {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    color: #ccc;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    color: #00bfff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.terms-section p, 
.terms-section ul {
    font-size: 0.95rem;
    line-height: 1.7;
}

.terms-section ul {
    margin: 10px 0 0 20px;
    padding: 0;
    list-style: disc;
}

.terms-section ul li {
    margin-bottom: 8px;
}
/* --- PRODUCTS GRID --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.product-card {
    background: rgba(0,0,0,0.6);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}
.product-card:hover {
    transform: scale(1.03);
}

.product-card img {
    width: 100%;
    display: block;
}

.product-info {
    padding: 15px;
    color: white;
    text-align: center;
}

.product-info h3 {
    margin: 5px 0;
    font-size: 1.1rem;
}



/* --- PRODUCT MODAL --- */
.product-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #111;
    border-radius: 10px;
    max-width: 1000px;
    width: 90%;
    display: flex;
    gap: 20px;
    padding: 20px;
    color: white;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.modal-left {
    flex: 1;
}

.main-image {
    padding-top: 130px;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.thumb-gallery {
    display: flex;
    gap: 10px;
}


.thumb-gallery .thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid transparent;
}
.thumb-gallery .thumb:hover {
    border-color: #0078D7;
}

.modal-right {
    flex: 1;
}

.modal-right h2 {
    padding-top: 100px;
    margin-top: 0;
    color: #017fe6;
}


.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.modal-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quantity-btn {
    background: #222;
    border: none;
    color: white;
    font-size: 18px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 4px;
}

.quantity-value {
    min-width: 20px;
    text-align: center;
}
/* Optional: Custom scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #0078D7
;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background: #111;
}

.buy-now-btn {
    background: #0078D7;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    font-weight: 600;
}

.product-description p {
    margin-bottom: 10px;
}
.modal-plan-select {
    margin-bottom: 20px;
}

.modal-plan-select select {
    width: 100%;
    background-color: #111;        /* 👈 ciemne tło bez przezroczystości */
    color: white;
    border: 1px solid #00bfff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;              /* 👈 usuwa natywne style przeglądarki */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: background 0.2s, border 0.2s;
}

.modal-plan-select select:hover {
    background-color: #1a1a1a;     /* lekko jaśniejsze przy hover */
    border-color: #00bfff;
}

.modal-plan-select select:focus {
    outline: none;
    border-color: #00bfff;
    background-color: #1a1a1a;
}
/* ✅ Efekt rozszerzenia strony po otwarciu modala */


.product-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
/* ✅ Produkty obok siebie i wyśrodkowane */
.products-grid {
    display: flex;
    justify-content: center;     /* wyśrodkowuje produkty w poziomie */
    align-items: flex-start;     
    flex-wrap: wrap;             /* zawija do kolejnych wierszy na mniejszych ekranach */
    gap: 30px;                   /* odstęp między produktami */
    max-width: 1200px;           /* szerokość całej sekcji */
    margin: 60px auto;           /* środek strony */
    padding: 0 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 350px;                /* szerokość pojedynczej karty */
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.product-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-info .stock {
    margin-bottom: 15px;
}

.product-info .buy-btn {
    background: #0078D7;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.1s;
}

.product-info .buy-btn:hover {
    background: #005fa3;
    transform: scale(1.03);
}

.product-info .buy-btn:active {
    transform: scale(0.97);
}
/* ✅ Poszerzony modal na stronie produktu */
.product-page .modal-content {
    max-width: 2000px;        /* domyślnie było ~900px */
    width: 100%;
    margin: 60px auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Sekcja zdjęć (lewa strona) */
.product-page .modal-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Sekcja treści (prawa strona) */
.product-page .modal-right {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* === FULL BLEED dla Reviews (od brzegu do brzegu) === */
.reviews-section.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;   /* wysuwa sekcję poza wąski kontener */
  margin-right: -50vw;
  width: 100vw;         /* pełna szerokość okna */
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
}

/* Wnętrze sekcji (zostawiamy wygodne wewnętrzne marginesy) */
.reviews-section.full-bleed .reviews-header,
.reviews-section.full-bleed .reviews-slider {
  max-width: none;  /* zdejmujemy limity 1200/1000px */
  margin: 0;        /* kasujemy centrowanie auto */
  padding: 0 24px;  /* delikatny wewnętrzny padding */
}

/* Karty niech jadą swobodnie po całej szerokości */
.reviews-section.full-bleed .reviews-slider {
  width: 100000000;         /* tor dopasowany do liczby kart */
  animation: slideReviews 40s linear infinite;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #fff;
}

.product-rating .stars {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #ffcc00; /* kolor gwiazdek */
    gap: 8px;
}

.product-rating .stars .rating-number {
    font-size: 0.9rem;
    color: #aaa;
}

.product-rating .product-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid #444;
    padding-left: 15px;
}

.product-rating .product-brand img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.product-rating .product-brand a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.product-rating .product-brand a:hover {
    color: #00bfff;
}
/* Nowa stylizacja dla ikony menu */
.menu-icon {
    display: none; /* Domyślnie ukryte, media query to zmieni */
    cursor: pointer;
    z-index: 1001;
    /* Dodajemy rozmiary dla kontenera */
    width: 35px; /* Przykład */
    height: 35px; /* Przykład */
}
.menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Upewnia się, że obraz jest widoczny */
    display: block; 
}



@media (max-width: 768px) {
    /* Ukryj standardowe linki i przycisk "Contact us" (desktop) */
    .nav-links,
    .contact-button-desktop {
        display: none;
    }

    /* Pokaż ikonę hamburgera w pasku nav */
    .menu-icon {
        display: block;
    }
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.opennavv {
    display: none; /* Domyślnie ukryty dla szerokich ekranów */
    /* Dodaj inne niezbędne style, np. kolor, padding */
    cursor: pointer;
    position: absolute; /* Jeśli ma być poza standardowym przepływem */
    top: 15px;
    right: 15px;
    
}


@media screen and (max-width: 768px) {
    /* Pokaż ikonę/przycisk do otwierania nawigacji mobilnej */
    .opennavv {
        display: block; 
    }

    /* Ukryj pełne menu (czyli Twój blok z linkami) */
    .hide {
        display: none; /* KLUCZOWA ZMIANA: Ukrycie elementu */
    }
}

.hide a{
   padding: 10px ;
}