*  {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: normal;
  }

body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}


/* language */
.language-selector {
    position: absolute;
    right: 40px;
    left: auto;
    top: 25px;
    margin: 0;
    z-index: 1001;
}

.lang-toggle {
    background: #fff;
    border: 2px solid #db1a5b;
    border-radius: 25px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    max-width: 200px;
}

.lang-toggle img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
}

.lang-toggle .arrow {
    font-size: 10px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    width: 150px;
    z-index: 1000;
    max-height: 280px;
    overflow-y: auto;
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.lang-dropdown li a:hover {
    background: #f0f0f0;
}

.lang-dropdown img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
}

.language-selector.open .lang-dropdown {
    display: block;
}

/* tablet version */

@media (min-width: 768px) and (max-width: 1024px) {
    .language-selector {
        right: 70px;
        top: 23px;
    }

    .lang-toggle {
        padding: 8px 14px;
        font-size: 14px;
        max-width: 180px;
        justify-content: center;
    }

    .lang-dropdown {
        right: 0;
        width: 160px;
    }

    .lang-dropdown li a {
        padding: 10px;
        font-size: 14px;
    }

    .lang-toggle img,
    .lang-dropdown img {
        width: 18px;
        height: 14px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .language-selector {
        position: absolute;
        top: 25px;             
        right: 60px;         
        left: auto;            
        width: auto;
        margin: 0;
        z-index: 1001;         
    }

    .lang-toggle {
        width: auto;
        max-width: 200px;
        justify-content: flex-start;
    }

    .lang-dropdown {
        width: 150px;
        right: 0;
        transform: none;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 10px;
}

.product-card {
    flex: 1 1 290px;
    max-width: 290px;
    background-color: #ffffff;
    border: 1px solid #db1a5b;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (max-width: 767px) {
    .product-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.product-flag {
    margin-right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.product-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
.product-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}
.detail {
    display: flex;
    justify-content: space-between;
}

.label {
    color: #666;
}
.value {
    font-weight: bold;
    color: #333;
}

.price {
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 16px;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    color: #333;
    font-weight: bold;
    
}
.countries {
    font-size: 14px;
    color: #555;
    /* margin-bottom: 25px; */
}

.buy-button,
.buy-button7 {
    background-color: #db1a5b;
    color: #fff;
    border: none;
    padding: 10px 100px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bolder;
    transition: background-color 0.3s;
    text-decoration: none;
}

.buy-button:hover,
.buy-button7:hover {
    background-color: #c2185b;
}


.show-button {
    /* position: absolute; */
    background-color: #db1a5b;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    margin-top: -38px;
    float: right;
}


.show-button:hover {
    background-color: #c2185b;
}

main {
    margin-top: 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
  }

  .product-card {
    flex: 0 1 calc(22.333% - 1px);
    max-width: calc(70.333% - 10px);
    padding: 30px;
  }

  .product-title {
    font-size: 18px;
  }

  .price {
    font-size: 36px;
  }

  .buy-button,
  .buy-button7 {
    padding: 10px 40px;
    font-size: 15px;
  }

  .product-flag {
    width: 40px;
    height: 40px;
  }

  .countries {
    font-size: 13px;
  }

  .show-button {
    font-size: 12px;
    padding: 5px 10px;
  }

}

/* search dropdown */

/* Desktop + Tablet */
.dropdown-container {
  max-width: 450px;
  margin: -10px auto 0 auto; /* top | sides | bottom */
  transform: translate(-28px, -30px);
}

.dropdown-input {
  width: 100%;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  outline: none;
}

/* Search icon */
.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #db1a5b;
  pointer-events: none;
}

.autocomplete-list {
  position: absolute;
  width: 112%;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  max-height: 280px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #333;
  transition: background 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.autocomplete-item:hover {
  background: #f5f5f5;
}

.flag-icon {
  width: 34px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .dropdown-container {
    max-width: 450px;
    margin: -10px auto 0 auto; /* top | sides | bottom */
    transform: translate(-28px, -30px); /* Adjust only vertical shift */
  }

  .dropdown-input {
    width: 85%;
    padding-left: 40px;
    font-size: 15px;
  }

  .search-icon {
    left: 20px;
    font-size: 18px;
  }

  .autocomplete-list {
    width: 95%;
    left: 10px;
  }

}

/* Mobile */
@media (max-width: 767px) {
  .dropdown-container {
    max-width: 90%;
    padding: 0 10px;
    margin: -10px auto -20px auto; /* top, horizontal auto, bottom */
    transform: translate(-1px, -34px); /* Adjust only vertical shift */
  }

  .dropdown-input {
    width: 85%;
    padding-left: 40px;
    font-size: 15px;
  }

  .search-icon {
    left: 20px;
    font-size: 18px;
  }

  .autocomplete-list {
    width: 95%;
    left: 10px;
  }

}

.button-container button {
    width: 200px;
    background-color: #fff;
    border: 1px solid #db1a5b;
    border-radius: 10px 10px 10px 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 1rem;
    color: #db1a5b;
}

.dribble-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #333;
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Dribble keyframes for the shake effect */
@keyframes dribble {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* Class that triggers the shake animation */
.shake {
    animation: dribble 0.5s ease forwards;
}
  

.country-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.country {
    margin: 15px;
    text-align: center;
}

.country img {
    width: 80px;
    height: auto;
    border-radius: 50%;
}

.country span {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    color: #333;
}

/* Logo Styling */
.logo-container {
    text-align: center;
    margin: 20px 0;
}

.logo {
    width: 90px;
    height: auto;
    margin-left: 8px;
    cursor: pointer;   
}

@media (max-width: 767px) {
  .logo {
    width: 70px;          
    margin-left: 0;       
  }

  .logo-container {
    margin: 15px 0;     
  }
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    z-index: 1001;
}

.modal-content {
    overflow-y: auto; /* Enables vertical scroll */
    flex-grow: 1; /* Allow content to grow and take available space */
    padding: 20px;
    height: 50%; /* Make the content fill the remaining space inside the modal */
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: none;
    width: 60%;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1002;
}

/* Heading Style Inside Modal */
.modal-content h2 {
    display: flex;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

/* List Style for Countries */
.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content ul li {
    margin: 10px 0;
    font-size: 16px;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content ul li img.flag {
    width: 32px;
    height: auto;
    border-radius: 5px;
    margin-right: 10px;
}

/* Close Button */
.close {
    color: #333;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #db1a5b;
}

@media (max-width: 767px) {
  .modal-content {
    width: 80%;
    height: 70vh;
    margin: 5vh auto;
    padding: 15px;
    border-radius: 10px;
    overflow-y: auto;
  }

  .modal-content h2 {
    font-size: 18px;
  }

  .modal-content ul li {
    font-size: 14px;
    flex-wrap: wrap;
    text-align: center;
  }

  .country {
    margin: 10px;
  }

  .country img {
    width: 60px;
  }

  .country span {
    font-size: 0.9rem;
  }

  .close {
    font-size: 22px;
  }
}


/* Country Section */
.country-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.country {
    margin: 15px;
    text-align: center;
}

.country img {
    width: 80px;
    height: auto;
    border-radius: 50%;
}

.country span {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    color: #333;
}
    
.hero {
    text-align: center;
    padding: 40px 20px;
    margin-top: -2%;
    /* background-color: #fff6e6; */
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #000000;
}

.hero h1 span {
    color: #db1a5b;
}

.hero p {
    margin: 10px 0;
    font-size: 18px;
    color: #535353;
}

.hero img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .hero {
        padding: 30px 15px;
        margin-top: -8%;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero img {
        margin-top: 15px;
    }

}

/* Header styles */
header {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    color: white;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    margin-right: 50px;
    transform: translateY(7%);
}

header nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: rgb(116, 116, 116);
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s;
    font-weight: bolder;
}

header nav ul li a:hover {
    color: #000000;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    margin-left: auto;
    color: rgb(0, 0, 0);
}

#nav-list {
    display: flex;
    flex-direction: row;
}

@media (max-width: 767px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .logo {
        color: #cdcdcd;
        font-size: 24px;
        text-decoration: none;
    }

    #menuToggle {
        display: block;
        position: relative;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
    }

    #menuToggle span {
        display: block;
        width: 30px;
        height: 4px;
        margin-bottom: 7px;
        position: relative;
        background: #db1a5b;
        border-radius: 3px;
        z-index: 1;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #cdcdcd;
    }

    #menuToggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100% - 80px);
        background-color: #f9f9f9;
        flex-direction: column;
        text-align: center;
        padding: 10px;
        margin: 0;
        z-index: 999;
        transition: background-color 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    #nav-list.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    #nav-list ul {
        list-style-type: none;
        padding: 0;
        width: 100%;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
        font-size: 18px;
        margin-top: 15px;
    }

    #nav-list ul li a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        padding: 10px;
        text-align: left;
        display: block;
        transition: background-color 0.3s ease;
    }

    #nav-list ul li a:hover {
        background-color: #555;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {
  header {
    padding: 12px 20px;
  }

  .logo {
    font-size: 22px;
  }

  #menuToggle {
        display: block;
        position: relative;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
    }

    #menuToggle span {
        display: block;
        width: 30px;
        height: 4px;
        margin-bottom: 7px;
        position: relative;
        background: #db1a5b;
        border-radius: 3px;
        z-index: 1;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #cdcdcd;
    }

    #menuToggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100% - 80px);
        background-color: #f9f9f9;
        flex-direction: column;
        text-align: center;
        padding: 10px;
        margin: 0;
        z-index: 999;
        transition: background-color 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    #nav-list.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    #nav-list ul {
        list-style-type: none;
        padding: 0;
        width: 100%;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
        font-size: 18px;
        margin-top: 15px;
    }

    #nav-list ul li a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        padding: 10px;
        text-align: left;
        display: block;
        transition: background-color 0.3s ease;
    }

    #nav-list ul li a:hover {
        background-color: #555;
    }

  header nav ul {
  display: flex;
  justify-content: start;
  gap: 20px;
  padding: 0 40px; /* controls side spacing */
}
}

/* lokal buttons */

/* ========== Base Styles ========== */

.container2, .container3 {
  display: grid;
  gap: 20px;
  padding: 0 20px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

/* Container2: Desktop */
.container2 {
  grid-template-columns: repeat(4, 245px);
  grid-template-rows: repeat(2, 50px);
  margin-bottom: -50px;
}

/* Container3: Desktop */
.container3 {
  grid-template-columns: repeat(4, 200px);
  gap: 50px;
  margin-top: 10px;
}

/* Common Button Styles */
.styled-button,
.styled-button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  width: 100%;
  font-weight: bolder;
}

.styled-button img {
  width: 30px;
  height: 30px;
}

.styled-button2 img {
  vertical-align: middle;
  width: 50px;
  height: 50px;
}

.styled-button:hover,
.styled-button2:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  color: #535353;
}

.styled-button:active,
.styled-button2:active {
  transform: translateY(0);
  box-shadow: none;
}

.styled-button.active,
.styled-button2.active {
  background-color: #db1a5b;
  color: white;
}

a.no-underline {
  text-decoration: none;
  display: inline-block;
}

/* ========== Responsive Styles ========== */
@media (max-width: 767px) {

  .container2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 2 buttons per row, to avoid overcrowding */
    gap: 12px;
    justify-content: center;
  }

  .styled-button {
    width: 100%; /* Ensures full width in grid cell */
    padding: 10px;
    font-size: 14px;
    text-align: center;
    flex-direction: column; /* Stack icon and text if needed */
    color: #000;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-weight: bolder;
  }

  .styled-button img {
    width: 24px;
    height: 24px;
  }

  .container3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 10px 20px 50px 20px; /* Top and bottom spacing */
    justify-content: center;
  }

  .styled-button2 {
    width: 100%;
    font-size: 15px;
    padding: 12px 16px;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-weight: bolder;
  }

  .styled-button2 img {
    width: 45px;
    height: 45px;
  }

  a.no-underline {
    text-decoration: none;
    display: inline-block;
  }
}



/* Tablet view */

@media (min-width: 768px) and (max-width: 1024px) {

  .container2 {
    grid-template-columns: repeat(4, 1fr); /* All columns get equal space */
    grid-template-rows: 45px 50px;
    gap: 9px;
    margin-top: 20px;
    margin-bottom: -50px;
  }

  .container3 {
    grid-template-columns: repeat(3, 1fr); /* 3 equal-width columns */
    gap: 20px;
    margin-top: 10px;
  }

  .styled-button {
    width: 100%; /* Ensure buttons stretch to full grid cell */
  }

  .styled-button img {
    width: 25px;
    height: 25px;
  }

  .styled-button2 {
    width: 100%;
  }

  .styled-button2 img {
    width: 45px;
    height: 45px;
  }

}


/* ========== Base Styles ========== */

.container15, .container16 {
  display: grid;
  gap: 20px;
  padding: 0 20px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

/* Container2: Desktop */
.container15 {
  grid-template-columns: repeat(1, 245px);
  grid-template-rows: repeat(2, 50px);
  margin-bottom: -50px;
}

/* Container3: Desktop */
.container16 {
  grid-template-columns: repeat(4, 200px);
  gap: 50px;
  margin-top: 10px;
}

/* Common Button Styles */
.styled-button,
.styled-button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #000;
  flex-direction: row;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 25px;
  padding: 10px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  width: 100%;
  font-weight: bolder;
}

.styled-button img {
  width: 30px;
  height: 30px;
}

.styled-button2 img {
  vertical-align: middle;
  width: 50px;
  height: 50px;
}

.styled-button:hover,
.styled-button2:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  color: #535353;
}

.styled-button:active,
.styled-button2:active {
  transform: translateY(0);
  box-shadow: none;
}

.styled-button.active,
.styled-button2.active {
  background-color: #db1a5b;
  color: white;
}

a.no-underline {
  text-decoration: none;
  display: inline-block;
}

/* ========== Responsive Styles ========== */
@media (max-width: 767px) {

  .container15 {
    display: grid;
    grid-template-columns: repeat(1, 250px); /* 2 buttons per row, to avoid overcrowding */
    gap: 12px;
    justify-content: center;
  }

  .styled-button {
    width: 100%; /* Ensures full width in grid cell */
    padding: 10px;
    font-size: 14px;
    text-align: center;
    flex-direction: row; /* Stack icon and text if needed */
    color: #000;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-weight: bolder;
  }

  .styled-button img {
    width: 34px;
    height: 34px;
  }

  .container15 {
    display: grid;
    margin: 10px 0px -30px 10px;
    justify-content: center;
  }

  .styled-button {
    width: 100%;
    font-size: 15px;
    padding: 30px 16px;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 25px;
    
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-weight: bolder;
  }

  .styled-button2 img {
    width: 45px;
    height: 45px;
  }

  a.no-underline {
    text-decoration: none;
    display: inline-block;
  }
}



/* Tablet view */

@media (min-width: 768px) and (max-width: 1024px) {

  .container15 {
    grid-template-columns: repeat(1, 200px); /* All columns get equal space */
    grid-template-rows: 45px 50px;
    gap: 9px;
    margin-top: 20px;
    margin-bottom: -50px;
  }

  .container15 {
    grid-template-columns: repeat(1, 250px); /* 3 equal-width columns */
    gap: 20px;
    margin-top: 10px;
  }

  .styled-button {
    width: 100%;
    flex-direction: row;
  }

  .styled-button img {
    width: 25px;
    height: 25px;
  }

  .styled-button2 {
    width: 100%;
  }

  .styled-button2 img {
    width: 45px;
    height: 45px;
  }

}

 /* FAQ */
 /* ================= FAQ Styles ================= */

.faq-container {
  max-width: 900px; 
  margin: 50px auto; 
  padding: 30px;
  color: #333; 
}

.faq-container h1 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  color: #000000; 
}

.faq-item {
  border-bottom: 1px solid #ddd; 
  overflow: hidden; 
}

.faq-question {
  background-color: #f2f2f2; 
  width: 100%;
  padding: 13px;
  text-align: left;
  font-size: 15px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease; 
}

.faq-question:hover {
  background-color: #db1a5b; 
}

.faq-question .arrow {
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease; 
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0; 
  overflow: hidden;
  transition: max-height 0.3s ease; 
  background-color: #f9f9f9f2;
}

.faq-answer p {
  padding: 20px;
  font-size: 16px;
  line-height: 1.5; 
  color: #555; 
}

.faq-answer a {
  color: #e40606;
}

/* ========== Mobile Styles ========== */
@media (max-width: 767px) {
  .faq-container {
    max-width: 95%; 
    margin: 20px auto; 
    padding: 20px;
    color: #333; 
  }

  .faq-question {
  padding: 15px;
  font-size: 16px;   
  font-weight: 500;     
  line-height: 1.4;        
  color: #000000;    
}

  .faq-answer p {
    font-size: 16px;
  }

  .faq-container h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
    color: #000000;
  }
}

/* ========== Tablet Styles (768px to 1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {
  .faq-container {
    max-width: 90%;
    padding: 25px;
    margin: 40px auto;
  }

  .faq-container h1 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px;
  }

  .faq-answer p {
    font-size: 15px;
    padding: 18px;
  }
}

/* ========== Footer Base Styles (Desktop) ========== */
.footer {
  background-color: #f2f2f2;
  padding: 30px 0;
  text-align: center;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10%;
}

.logo img {
  width: 80px;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links li {
  display: inline;
}

.footer-links a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: bolder;
}

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

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  margin: 0 10px;
}

.social-icons a:hover {
  color: #d63384;
}

.copyright {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}


/* ========== Tablet Styles (768px to 1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-container {
    margin-top: 20%;
  }
  .footer-links {
    gap: 15px;
  }

  .logo img {
    width: 70px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .social-icons a {
    font-size: 18px;
    margin: 0 8px;
  }
}


/* ========== Mobile Styles (up to 767px) ========== */
@media (max-width: 767px) {
  .footer-container {
    margin-top: 40%;
  }

  .logo img {
    width: 70px;
  }

  .footer-links { gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .social-icons a {
    font-size: 18px;
    margin: 0 6px;
  }

  .copyright {
    font-size: 11px;
  }
}


/* DEVICES */

.device-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
}

.big4  {
        font-size: 40px;
        margin-top: 50px;
        text-align: center;
        color: #db1a5b;
    }

.title {
    text-align: center;
    color: #db1a5b;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #db1a5b;
    font-size: 54px;
    font-weight: bold;
}

.device-box {
    border: 1px solid #db1a5b;
    border-radius: 30px;
    padding: 30px;
}

.device-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.device-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-weight: bold;
}

.device-columns ul {
    list-style: none;
    padding: 0;
    margin: 0 10px;
    flex: 1;
    min-width: 120px;
}

.device-columns li {
    margin-bottom: 8px;
    font-size: 16px;
}

.device-columns h6 {
    font-size: 12px;
    margin-top: -3%;
}

.notes {
    margin-top: 25px;
    font-size: 15px;
    color: #555;
}

.notes p {
    margin-bottom: 8px;
}

/* --- Mobile (Phones) --- */
@media (max-width: 767px) {
    .device-wrapper {
        padding: 10px;
    }

    .subtitle {
        font-size: 36px;
    }

    .big4  {
        font-size: 25px;
        margin-top: 30px;
        text-align: center;
        color: #db1a5b;
    }

    .device-columns {
        display: flex;
        align-items: center;
        font-weight: bold;
    }

    .device-columns ul {
        list-style: none;
        margin: 10px 0;
        min-width: unset;
        width: 100%;
        flex: 1;
        font-weight: bold;
    }
}

/* --- Tablet (768px to 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .device-wrapper {
        padding: 15px;
        max-width: 90%;
    }

    .subtitle {
        font-size: 44px;
    }

    .big4  {
        font-size: 30px;
        margin-top: 50px;
        text-align: center;
        color: #db1a5b;
    }

    .device-columns {
        justify-content: space-around;
    }

    .device-columns ul {
        margin: 10px;
        flex: 0 0 45%;
    }
}


/* Aktivizimi */
.container10 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 40px;
  background-color: #f9f9f9;
  gap: 30px;
}

.tekst2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0;
  margin-top: 80px;
  color: #000000;
}

.card2 {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  /* background: white; */
}

.card2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.card2 h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.card2 p {
  font-size: 0.9rem;
  color: #555;
}

.card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Tablet Styles (768px to 1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {
  .tekst2 {
    font-size: 1.75rem;
    margin-top: 60px;
  }

  .card2 {
    max-width: 25%;
  }
}

/* ========== Mobile Styles (max-width: 767px) ========== */
@media (max-width: 767px) {
  .container10 {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .tekst2 {
    font-size: 1.25rem;
    margin-top: 40px;
  }

  .card2 {
    width: 60%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .card2 h3 {
    font-size: 1rem;
  }

  .card2 p {
    font-size: 0.85rem;
  }
}



.flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

}

.container7 {
    max-width: 590px;
    background-color: #fff;
    border: 1px solid #db1a5b;
    border-radius: 20px;
    padding: 20px;
    margin: 50px auto 50px 110px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.big {
    text-align: center;
    font-size: 50px;
    color: #db1a5b;
    margin-top: 50px;
}

.big2 {
    text-align: center;
    font-size: 40px;
    color: #db1a5b;
    margin-top: 50px;
}

.container8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -58% -52% 0 0;
    width: 100%;
    max-width: 600px;
}

/* Card styling */
.card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    width: 100%;
    max-width: 510px;
    margin-bottom: 50px;
}

.card-header {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#checkout-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

#checkout-form input[type="text"],
#checkout-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

#checkout-form input[type="text"]:focus,
#checkout-form input[type="email"]:focus {
    border-color: #007bff;
    outline: none;
}

#checkout-form input[type="checkbox"] {
    margin-right: 8px;
}

#checkout-form label[for="terms"] {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    margin-top: 20px;
}

.label-text {
    font-size: 15px;
}

#checkout-form button[type="submit"] {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

#checkout-form button[type="submit"]:hover {
    background-color: #0056b3;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
}

.payment-method {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.payment-method button {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
}

.payment-method button.active {
    border: 2px solid blue;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.card-input-container {
    position: relative;
}

.card-brand-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: auto;
}

/* --- Mobile (≤767px) --- */
@media (max-width: 767px) {
    .flex-wrapper {
        flex-direction: column;
        align-items: center;
        margin: 0 auto 40px;
    }

    .container7 {
        width: 69%;
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }

    .container8 {
        width: 80%;
        max-width: 600px;
        margin: 0 auto 100px;
        align-items: center;
    }

    .card {
        max-width: 85%;
        padding: 20px;
    }

    .big {
        font-size: 25px;
        margin-top: 20px;
        text-align: center;
    }

    .big2 {
        font-size: 25px;
        margin-top: 20px;
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
        word-break: break-word;
    }

    .label-text {
        font-size: 12px;
    }

    .buy-button7 {
        margin: 0 auto;
        padding: 10px 100px;
        background-color: #db1a5b;
        color: #fff;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        text-decoration-line: none;
    }

    .buy-button7:hover {
        background-color: #c2185b;
    }
}


/* --- Tablet (768px–1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
     .flex-wrapper {
        flex-direction: column;
        align-items: center;
        margin: 0 auto 40px;
    }

    .container7 {
        width: 70%;
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }

    .container8 {
        width: 80%;
        max-width: 600px;
        margin: 0 auto 100px;
        align-items: center;
    }

    .card {
        max-width: 90%;
        padding: 20px;
    }

    .big, .big2 {
        font-size: 25px;
        margin-top: 20px;
        text-align: center;
    }

    .label-text {
        font-size: 12px;
    }

    .buy-button7 {
        margin: 0 auto;
        padding: 10px 100px;
        background-color: #db1a5b;
        color: #fff;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        text-decoration-line: none;
    }

    .buy-button7:hover {
        background-color: #c2185b;
    }
}


/* Base / Desktop styles */
.container11 {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.toggle-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.toggle-buttons button {
  padding: 10px 20px;
  border: none;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.toggle-buttons button.active {
  background-color: #db1a5b;
  color: white;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.step {
  flex: 1 1 300px;
  max-width: 350px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.step-number {
  background: #db1a5b;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-top: 18px;
}

.step img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Tablet: 768px–1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .container11 {
    padding: 0 30px;
    margin-bottom: 80px;
  }

  .toggle-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .toggle-buttons button {
    font-size: 15px;
    padding: 9px 18px;
  }

  .steps {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .step {
    .step {
    flex: 1 1 100%;
    max-width: 70%;
  }

  }
   .step-header {
    flex-direction: row;
    align-items: center;
  }

  .step img {
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}

/* Mobile: ≤767px */
@media (max-width: 767px) {
  .container11 {
    padding: 0 15px;
    margin-bottom: 50px;
  }

  .toggle-buttons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .toggle-buttons button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .steps {
    justify-content: center;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 100%;
    max-width: 70%;
    
  }

  .step-header {
    flex-direction: row;
    align-items: center;
  }

  .step img {
  width: 100%;
  /* border-radius: 8px; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}



/* ===== Desktop (≥1025px) ===== */
.main-section {
  margin: -30px auto 80px;
  max-width: 700px;
  padding: 50px 30px 50px 50px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-section h1 {
  font-size: 20px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.id {
  display: flex;
  margin-top: 11px;
}

.esim-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.esim-form input {
  padding: 12px 15px;
  font-size: 16px;
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.esim-form button {
  background-color: #db1a5b;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.esim-form button:hover {
  background-color: #c2185b;
}

.result {
  margin-top: 20px;
}

.plan-info {
  background-color: #f1f7ff;
  border: 1px solid #bcd;
  border-radius: 8px;
  padding: 20px;
  max-width: 450px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  color: #2c3e50;
  animation: fadeIn 0.5s ease-in-out;
}

.plan-info h3 {
  margin-top: 0;
  color: #db1a5b;
}

.plan-info p {
  margin: 8px 0;
  font-size: 15px;
}

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


/* ===== Tablet (768px–1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .main-section {
    max-width: 70%;
    padding: 30px 25px;
    margin: 25px auto 0; /* also higher */
  }

  .main-section h1 {
    font-size: 18px;
  }

  .esim-form input {
    width: 90%;
  }

  .esim-form button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .plan-info {
    max-width: 100%;
  }
}


/* ===== Mobile (≤767px) ===== */
@media (max-width: 767px) {
  .main-section {
    max-width: 95%;
    padding: 25px 20px;
    margin: 0 auto 0;
  }

  .main-section h1 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .esim-form input {
    width: 100%;
    font-size: 15px;
  }

  .esim-form button {
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
  }

  .plan-info {
    max-width: 100%;
    padding: 15px;
  }

  .plan-info p {
    font-size: 14px;
  }
}



.warning-text {
    margin-bottom: -100px;
    color: #333;
    font-size: 14px;
    /* border-top: 1px solid #ccc; */
    padding-top: 50px;
    text-align: center;
  }


@media (max-width: 767px) {
    .warning-text {
        margin-bottom: -100px;
    color: #333;
    font-size: 11px;
    /* border-top: 1px solid #ccc; */
    padding-top: 50px;
    text-align: center;
        
      }
     
}

input.error {
    border: 2px solid red; 
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); 
}

input:invalid {
    border-color: red; /* Border color when the input is invalid */
}


/* Display error messages as placeholders inside the inputs */
input.error::placeholder {
    color: red;
    font-size: 0.9em;
}


.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  /* margin: 20px 0 10px; */
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  
}

.payment-icons img {
  height: 30px;
  max-width: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.05);
}

/* 📱 Mobile (≤767px) */
@media (max-width: 767px) {
  .payment-icons {
    gap: 12px;
  }

  .payment-icons img {
    height: 24px;
    max-width: 60px;
  }
}

/* 📱 Tablet (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .payment-icons {
    gap: 16px;
  }

  .payment-icons img {
    height: 26px;
    max-width: 70px;
  }
}

.topup-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}

/* Titulli */
.topup-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

/* Forma */
.topup-container .form-label {
    font-weight: bold;
}

.topup-container .form-control,
.topup-container .form-select {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
}

.topup-container .form-control:focus,
.topup-container .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.2);
    outline: none;
}

/* Butoni */
.topup-container .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #007bff;
    border: none;
    transition: 0.3s;
}

.topup-container .btn-primary:hover {
    background-color: #0056b3;
}

/* Alerts */
.alert {
    margin-bottom: 20px;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
}

/* Animacioni slow motion */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
