@font-face {
    font-family: 'Proximanova Extrabold';
    src: url('../fonts/Fontspring-DEMO-proximanova-extrabold.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik Light';
    src: url('../fonts/Graphik-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik Regular';
    src: url('../fonts/Graphik-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik Medium';
    src: url('../fonts/Graphik-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik Semibold';
    src: url('../fonts/Graphik-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik Bold';
    src: url('../fonts/Graphik-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}


:root {
    --font-primary-regular: 'Graphik Regular';
    --font-primary-Medium: 'Graphik Medium';
    --font-primary-SemiBold: 'Graphik Semibold';
    --font-primary-Bold: 'Graphik Bold';
    --font-secondary: 'Proximanova Extrabold';
    --text-color: #292929;
    --text-white: #fff;
    --text-secondary-color: #737274;
    --primary-color: #3b5bcc;
    --secondary-color: #1a318e;
    --bg-primary-color: #3b5bcc;
    --bg-secondary-color: #1a318e;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-primary-regular);

}
html {
  scroll-behavior: smooth;
}
.container {
    max-width: 1315px !important;
    margin: auto;
    width: 90%;

}

a {
    color: var(--text-color);
    text-decoration: none;
    outline: 0
}

a::after {
    text-decoration: none;
    outline: 0
}

a::active {
    text-decoration: none;
    outline: 0
}

a:hover {
    text-decoration: none
}

a:active,
a:focus,
a:visited {
    text-decoration: none;
    outline: 0
}

button:focus,
input:focus,
select:focus {
    outline: 0
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary-SemiBold);
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 28px;
}

ul li {
    font-size: 16px;
    line-height: 28px;
}

.section {
    padding: 50px 0;
}

header {
    background-color: var(--bg-secondary-color);
    color: white;
     position: relative;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff; /* change to your header background */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

header.fixed .header-mid .logo img{
max-height: 32px;
}
header.fixed .cart figure {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
header.fixed .cart figure img {
    max-height: 18px;
}
/* Top Bar */
.top-bar {
    display: flex;
    justify-content: end;
    padding: 12px 0px;
    font-size: 12px;
    align-items: center;
    flex-wrap: wrap;
    display: none;
}

.main-header-promo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
}

.top-right {
    display: flex;
    align-items: center;
}

.top-bar>span {
    padding-right: 190px;
}

.top-right select {
    margin-left: 10px;
    font-size: 14px;
    background: transparent;
    color: #fff;
    border: none;
}

.top-right span {
    margin-left: 10px;
}

.social-icons img {
    margin-left: 8px;
    cursor: pointer;
    max-height: 16px;
}

.header-mid {
    background: var(--bg-primary-color);
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background: var(--bg-primary-color);
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.logo a {
    color: white;
}

.promo-box {
    border: 1px solid #798fda;
    padding: 0px 15px;
    border-radius: 0px;
    font-size: 14px;
    max-width: 450px;
    width: 100%;
    height: 40px;
    position: relative;
}

.promo-box input {
    width: 100%;
    height: 38px;
    border: none;
    padding-left: 40px;
    background: transparent;
    color: #fff;
}

.promo-box img {
    position: absolute;
    top: 7px;
}

.promo-box input::placeholder {
    color: #fff;
}

.cart {
    position: relative;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart figure {
    width: 52px;
    height: 52px;
    border: 1px solid #fff;
    border-radius: 50%;
    line-height: 52px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
}

.cart-price {
    margin-left: 0px;
    font-weight: 400;
    font-size: 20px;
}

.cart-count{
    position: absolute;
    top: -3px;
    right: 9px;
    color: #fff;
}

/* Navigation */
.main-nav {
    background-color: var(--bg-secondary-color);
    padding: 0px 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.main-nav ul li {
    margin: 0 15px;
    position: relative;
}

.main-nav ul li span {
    position: absolute;
    right: -22px;
    top: 8px;
    transition: .5s;
}

.main-nav ul li:hover ul {
    visibility: visible;
}

.menu-dropdown-list {
    position: absolute;
    top: 47px;
    left: 0px;
    background: #fff;
    padding: 10px 20px;
    z-index: 1;
    flex-direction: column;
    box-shadow: 0 0 16px 0 #5a5a5a;
    width: 300px;
    visibility: hidden;
    align-items: stretch !important;
}

.menu_box li {
    margin: 0 !important;
}

.menu_box li a {
    color: #000 !important;
    padding: 5px 0 !important;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    display: inline-block;
    text-transform: uppercase;
}
.main-nav ul li a:hover {
    opacity: .9;
}
.main-nav ul li a i {
    margin-left: 5px;
}

.kamagra-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 330px;
}
.menu_box li a {
    font-size: 14px !important;
    padding: 3px 0 !important;
    text-transform: none !important;
}

.banner-image-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: wrap;
    align-content: center;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
.bnr-extra img {
    max-width: 77px !important;
    height: auto;
    float: left;
    margin-right: 10px;
}
.bnr-extra p{
    font-family: var(--font-primary-SemiBold);
    font-style: italic;
}
.bnr-extra
 {
    position: absolute;
    height: 45px;
    width: 100%;
    max-width: 440px;
    background: #ffffffe3;
    overflow: hidden;
    bottom: 25px;
    border-radius: 40px;
    padding: 7px 10px;
}
.banner-content {
    width: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    align-items: flex-end;
}


.banner-content .tagline {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-white);
}

.banner-content label {
    font-size: 48px;
    margin: 0;
    font-family: var(--font-primary-Bold);
    color: var(--text-white);
    text-align: end;
    line-height: 50px;
    font-weight: 600;
}

.banner-content h2 {
    font-size: 32px;
}

.delivery-time {
    margin: 15px 0 25px;
    font-size: 22px;
    color: var(--text-white);
}

.btn-discover {
    display: inline-block;
    padding: 0;
    background-color: var(--bg-primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 185px;
    height: 47px;
    text-align: center;
    line-height: 47px;
}

.btn-discover:hover {
    background-color: var(--bg-secondary-color);
}


.animate-fade {
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

.animate-slide {
    animation: slideUp 1.5s ease forwards;
    transform: translateY(30px);
    opacity: 0;
}

.animate-bounce {
    animation: bounceIn 2s ease forwards;
    opacity: 0;
}

/* Animation Keyframes */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.best-offer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.best-offer {
    width: 21%;
}

.products-main {
    width: 75%;
}

.offer-box {
    border: 1px solid #d0d8f2;
    padding: 15px 10px;
    border-radius: 0px;
    flex: 1 1 280px;
    background: #fafefe;
    position: relative;
    transition: transform 0.3s ease;
    margin: 15px 0 0;
    display: flex;
    gap: 10px;
}

.offer-box figure {
    flex: 0 0 40%;
    width: 40%;
}

.offer-box figure img {
    width: 100%;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
}

.product-card {
    border: 0px solid #d0d8f2;
    padding: 8px;
    border-radius: 0px;
    flex: 0 0 23%;
    background: #ffffff;
    position: relative;
    transition: transform 0.3s ease;
}
ul.products.products-list-top {
    gap: 0;
}
ul.products.products-list-top li {
    border-left: 1px solid #d0d8f2;
}
ul.products.products-list-top li {
    border-left: 1px solid #d0d8f2 !important;
    flex: 0 0 25%;
    padding: 20px;
    border: 1px solid #fff;
    box-shadow: none;
}
ul.products.products-list-top li:nth-child(1){
    border-left: 0px solid #fff !important;
}
ul.products.products-list-top li:nth-child(5){
    border-left: 0px solid #fff !important;
}
ul.products.products-list-top li:hover{
   border: 1px solid #d0d8f2 !important; 
}

.service-process {
    background: #eafafa;
    padding: 30px 0;
}

.offer-box:hover,
.product-card:hover {
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px;
}

.best-offer h2 span {
    color: var(--bg-secondary-color);
    font-size: 19px;
    font-family: var(--font-primary-SemiBold);
}

.best-offer h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 25px;
}

.offer-box h3 {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase;
    line-height: 18px;
}

.offer-box p {
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--text-color);
    text-align: left;
    text-transform: uppercase;
    font-family: var(--font-primary-SemiBold);
    line-height: 20px;
}

.offer-box p span {
    font-size: 18px;
    color: #f16a13;
    text-align: left;
    text-transform: uppercase;
    font-family: var(--font-primary-Bold)
}

.offer-box li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.offer-box li span {
    color: var(--primary);
    font-weight: bold;
}

.best-offer .btn {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 0px 0px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 0px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    height: 35px;
    line-height: 35px;
}

.btn:hover {
    background-color: var(--bg-primary-color);
}

.products-main .btn {
    display: inline-block;
    background-color: var(--bg-primary-color);
    color: white;
    padding: 0px 0px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 0px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    height: 50px;
    line-height: 50px;
}

.products-main .btn span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #fff;
    line-height: 32px;
}

.products-main .btn img {
    margin: 0 !important;
    height: 15px !important;
}

.product-card > img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 190px;
    margin: 10px 0;
    min-height: 190px;
}
ul.products.combinatie-pakketten-product li .btn img {
    height: auto;
    max-height: none;
    min-height: auto;
}
.product-card div img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 190px;
    margin: 10px 0;
    min-height: 190px;
}

.product-card h3 {
    font-size: 18px;
    margin: 0px 0 0px;
}

.price {
    color: #e06c00;
    font-size: 14px;
    font-weight: 600;
}

.products-main h2 {
    font-size: 32px;
    font-weight: 600;
    font-family: var(--font-primary-SemiBold);
    text-align: center;
    line-height: 32px;
    margin: 0 0 22px;
}

.products-main h2 span {
  font-weight: 600;
    font-family: var(--font-primary-SemiBold);
}


.discount-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0px;
}
.discount-container .card img {
    max-height: 58px;
}
.discount-container .card {
    flex: 0 0 23.5%;
    border-radius: 0px;
    overflow: hidden;
    animation: fadeInUp 1s ease-in;
    background: #fff;
    display: flex;
    padding: 20px;
    gap: 22px;
    border-radius: 15px;
    align-items: center;
}
.text h3 {
    font-size: 16px;
}

.discount-container .left-card {
    background: #e6f2f3;
    display: flex;
    align-items: center;
    background-image: url(../images/kamagra-kopen-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: flex-end;
    border: 1px solid #d2e3ff;
}

.discount-container .left-card img {
    width: 100px;
    height: auto;
    margin: 20px;
    border-radius: 4px;
}

.discount-container .left-card .text {
    padding: 20px;
    border: 1px solid #b2c6e7;
    margin-right: 20px;
}

.discount-container .left-card .text h3 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 24px;
    text-align: end;
}

.discount-container .left-card .text p {
    margin: 0;
    font-size: 19px;
    color: var(--text-color);
    line-height: 30px;
}

.discount-container .right-card {
    background: #fff0d9;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    border: 1px solid #f9e7cb;
}

.discount-container .right-card h3 {
    margin: 0 0 15px;
    font-size: 16px;
    color: #333;
    letter-spacing: 2px;
}

.discount-container .discount-btn {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    border: 2px dashed #b7003f;
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    font-size: 20px;
    font-family: var(--font-primary-Bold);
}

.discount-container .discount-btn span {
    background: #f71d6a;
    display: inline-block;
    padding: 12px 40px;
    margin: 3px;
}

.discount-container .discount-btn:hover {
    background: #c90054;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 29, 106, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(247, 29, 106, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 29, 106, 0);
    }
}

.popular-medicine h2 {
    font-size: 32px;
    text-align: center;
    margin: 0 0 25px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--font-primary-regular);
}



.popular-medicine.products-main {
    width: 100%;
}


/*----------------------------------------------*/
.bitcoin-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    animation: fadeSlideIn 1.2s ease-in-out;
    background-image: url(../images/bitcoin-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 85%;
    margin: 50px auto;
}

.bitcoin-text {
    flex: 1;
}

.bitcoin-text h2 {
    font-size: 22px;
    margin: 0 0 10px;
}

.bitcoin-text h2 span {
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-primary-Bold);
}

.bitcoin-text p {
    margin: 0;
    font-size: 16px;
    color: var(--text-white);
}



@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.products.combinatie-pakketten-product li figure {
    width: 100%;
    float: left;
    padding: 10px;
}

.products.combinatie-pakketten-product li figure img {
    max-height: 234px;
    margin: 0;
}
.products.combinatie-pakketten-product li div .btn {
    width: 87%;
    border-radius: 5px;
}

.products.combinatie-pakketten-product li div {
    padding: 0px 5px 20px;
    float: left;
    text-align: center;
}

.products.combinatie-pakketten-product {
    justify-content: center;
    gap: 15px;
}

.products.combinatie-pakketten-product li {
    flex: 0 0 23%;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}
.products.combinatie-pakketten-product li:nth-child(1){
    background-color: #fbeae0;
}
.products.combinatie-pakketten-product li:nth-child(2){
  
     background-color: #ebf2f2;
}
.products.combinatie-pakketten-product li:nth-child(3){
       background-color: #fafad7;
}
.products.combinatie-pakketten-product li:nth-child(4){
     background-color: #fee3e4;
}
.products.combinatie-pakketten-product li:nth-child(5){
    background-color: #fbeae0;
}
.products.combinatie-pakketten-product li:nth-child(6){
  
     background-color: #ebf2f2;
}
.products.combinatie-pakketten-product li:nth-child(7){
       background-color: #fafad7;
}
.products.combinatie-pakketten-product li:nth-child(8){
     background-color: #fee3e4;
}
.products.combinatie-pakketten-product li:nth-child(9){
  
     background-color: #ebf2f2;
}
.products.combinatie-pakketten-product li:nth-child(10){
       background-color: #fafad7;
}

.products.combinatie-pakketten-product li h3 {
    font-size: 16px;
    font-family: var(--font-primary-regular);
    font-weight: 400;
    margin-bottom: 5px;
}

.products.combinatie-pakketten-product li div p {
    font-size: 18px;
    color: var(--text-color);
    margin: 7px 0 5px;
}

.products.combinatie-pakketten-product li div p span {
    color: var(--primary-color);
    font-family: var(--font-primary-SemiBold);
    font-weight: 600;
    font-size: 24px;
}

/*-------------about section------------*/
.about-section {
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-section h2 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-section .text-column {
    flex: 0 0 100%;

}

.about-section .text-column p {
    text-align: justify;
    margin-bottom: 25px;
}

.image-column.image-column-text p {
    margin: 0 0 25px;
    text-align: justify;
}

.about-section .image-column {
    flex: 0 0 45%;

}
.text-column.text-column-2 p:last-child {
    margin: 0;
}
.about-section.about-section2 {
    margin: 20px 0 50px;
    background: #eef8fb;
    padding: 30px;
    border-radius: 20px;
    gap: 25px;
}
.text-column.text-column-2 {
    flex: 0 0 50% !important;
}

.image-column.image-column-2
 {
    flex: 0 0 47%;
}

.about-section .image-column img {
    max-width: 100%;
    height: 450px;
    border-radius: 18px;
    transition: transform 0.3s ease;
    object-fit: cover;
}
.home-bottom-content h2 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--font-primary-regular);
}
.home-bottom-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.home-bottom-content-txt {
    flex: 0 0 50%;
}
.home-bottom-content {
    padding: 50px 0 20px;
}
.home-bottom-content2 {
    padding: 0 0 20px;
}
.home-bottom-content img {
    border-radius: 15px;
}
.home-bottom-content2 p {
    margin: 0 0 25px;
}
.home-bottom-content-txt p {
    margin: 0 0 25px;
}
.about-section .image-column img:hover {
    transform: scale(1.05);
}

.about-heading {
    font-size: 32px;
    margin: 0 0 20px;
    font-family: var(--font-primary-regular);
    font-weight: 400;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*---------------------------- review section -----------------------------------*/

.review-section {
    max-width: 100%;
    margin: 50px auto 0;
    padding: 60px 0;
    text-align: center;
    background-color: #eef8fb;
}

.review-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
    font-family: var(--font-primary-regular);
    font-weight: 400;
}

.review-section .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

.review-section .card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    line-height: 28px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    text-align: justify;
}

.review-section .card:nth-child(1) {
    animation-delay: 0.2s;
}

.review-section .card:nth-child(2) {
    animation-delay: 0.4s;
}

.review-section .card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.footer {
    background-color: #111;
    padding: 70px 0px 0px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    padding-bottom: 0px;
}

.footer-top img {
    transition: transform 0.3s ease;
}

.footer-top div {
    margin: 0px;
    color: #ddd;
}

.footer-top div p {
    color: #fff;
    margin: 10px 0 0;
}


.newsletter {
    text-align: center;
    margin: 0 0 0px;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter form {
    position: relative;
    display: flex;
    gap: 0px;
    width: 70%;
    flex: 0 0 70%;
}

.newsletter p {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
    line-height: 26px;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 79%;
    border: none;
    border-radius: 0;
    background-color: #fff;
    color: #000;
    height: 55px;
}
.newsletter button:hover {
    background: #1a318e;
}
.newsletter input[type="email"]::placeholder {
    color: #aaa;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    background-color: #3f5efb;
    color: white;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    height: 55px;
    max-width: 120px;
    width: 100%;
    font-size: 17px;

}

.newsletter button:hover {
    background-color: #2c44d4;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: left;
    padding: 20px 0;

}

.footer-column {
    flex: 0 0 20%;
    padding: 10px;
}

.footer-column:nth-child(3) {
    flex: 0 0 40%;
}

.footer-column:nth-child(3) ul li {
    width: 45%;
    float: left;
}

.footer-column:nth-child(1) {
    flex: 0 0 40%;
}

.footer-column:nth-child(1) ul li {
    width: 45%;
    float: left;
}

.footer-column h4 {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-primary-SemiBold);
    padding-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-column h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 35px;
    height: 3px;
    background: #ed772b;
}

.footer-column ul li a:hover {
    color: #ed772b !important;
}
.footer-column ul {
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 6px 0;
    margin-left: 20px;
    float: left;
    width: 100%;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-column ul li::marker {
    color: #ed772b;
}

.footer-column ul li a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin: 10px 0;
}
footer .social-icons img {
    margin-left: 8px;
    cursor: pointer;
    max-height: 25px;
}
.social-icons a {
    color: #fff;
    /* border-radius: 50%; */
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.social-icons a:nth-child(3){
    filter: invert(1);
}


.social-icons a:hover {
    transform: scale(1.1);
}

.brands {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 30px;
    border-top: 0px solid #333;
    align-items: center;
    background: #fff;
}

.brands ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.brands ul li {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brands ul li p {
    font-size: 18px;
    color: #6c6c6c;
        font-weight: 600;
        font-family: var(--font-primary-SemiBold);
}

.brands img {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brands img:hover {
    filter: grayscale(0%);
}

.footer-bottom {
    text-align: left;
    font-size: 14px;
    padding: 10px 0;
    color: #fff;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-main-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 30px;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 0 0 30px;
}

.footer-column-border{
    position: relative;
}
.footer-column-border::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 82%;
    right: 35px;
    top: 20px;
    background-color: #333;
}
/*----------------------- product Detail Page ----------------------------------------*/

.product-container {
    max-width: 100%;
    margin: 35px auto;
    background: #fff;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    transition: transform 0.3s ease;
       align-items: flex-start;
}

.product-details h1 {
    font-size: 32px;
}

.product-image{
    flex: 0 1 35%;
    background: #f7f9fb;
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    display: flex; flex-flow:wrap;
    justify-content: center;
    align-items: center; position:sticky; top:0;
}
.product-image img {
    border-radius: 10px;
    height: auto;
    max-height: 300px;
    width: auto;
}

.product-details {
    flex: 0 0 60%;
}

.product-details small {
    color: #888;
}

.product-details h2 {
    margin: 10px 0;
}

.product-container .stars {
    color: #f0c040;
}

.product-container .price {
    margin: 10px 0;
    font-family: var(--font-primary-Bold);
    font-size: 24px;
    font-weight: 600;
}

.related-product a {
    margin: 0 5px;
    text-decoration: underline;
}

.product-container .price del {
    color: #999;
    margin-left: 10px;
}

.product-container .color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    border: 2px solid #ccc;
    cursor: pointer;
}

.product-container .size-btn {
    border: 1px solid #eee;
    padding: 10px 25px;
    margin: 10px 14px 5px 0;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.size-btn:hover,
.size-btn.active {
    background-color: #f7f9fb;
}

.product-container .in-stock {
    color: green;
    font-weight: 500;
}

.product-in-stock {
    margin: 10px 0;
}

.product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.product-buttons input[type="number"] {
    width: 30%;
    padding: 6px;
    font-size: 18px;
    text-align: center;
}

.product-container .btn {
    padding: 0px 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    font-family: var(--font-primary-Medium);
    font-weight: 500;
    width: auto;
}

.product-container .btn-primary {
    background-color: #3b5bcc;
    color: #fff;
}

.product-container .btn-warning {
    background-color: #1a318e;
    color: #fff;
}

.product-container .heart-icon {
    font-size: 22px;
    color: #333;
    cursor: pointer;
    margin-left: 10px;
}

.product-container .social-icons i {
    margin-right: 12px;
    cursor: pointer;
}

.quick-check-pay-mode {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    justify-content: center;
    background: #fff;
    gap: 20px;
    flex-wrap: wrap;
        margin: 25px 0 0;
}

.quick-check-pay-mode h5 {
    font-size: 18px;
}

.process-section {
    display: flex;
    justify-content: space-between;
    list-style: none;
    flex-wrap: wrap;
}

.process-bg {
    background-color: #4b307500;
    padding: 0px 0;
}

.process-section li {
    background: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-radius: 15px;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.process-section li img {
    max-height: 60px;
}

.process-section li h3 {
    color: var(--text-color);
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
    line-height: 20px;
}

.process-section li h3 span {
    display: block;
}

.product-main-content aside h3 {
    font-size: 22px;
    margin: 0 0 5px;
}

.product-description {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0;
    align-items: flex-start;
}

.product-main-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product-main-content .contact-page {
    width: 70%;
}

.product-main-content aside {
    width: 26%;
    background: #f7f9fb;
    padding: 25px;
    border-radius: 3px;
    position: sticky;
    top: 100px;
    border-top: 5px solid #1a318e;
}

.process-section-main {
    border: 1px solid #eee;
    margin: 0 0 50px;
    border-radius: 15px;
    overflow: hidden;
}

.product-main-content aside a {
    font-size: 16px;
    display: inline-block;
    margin: 5px 0;
    width: 100%;
}

.contact-page h2 {
    font-size: 20px;
    color: #1a318e;
    margin: 0 0 5px;
}

.contact-page p {
    margin: 0 0 25px;
}


/*---------------cart page design----------------------*/


.cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeIn 0.6s ease-in;
    margin: 50px 0;
}

.cart-left,
.cart-right {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.cart-container .cart-left {
    flex: 1 1 50%;
}

.cart-container .cart-right {
    flex: 1 1 30%;
    min-width: 250px;
    height: fit-content;
}

.cart-container .cart-left h2,
.cart-right h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
    align-items: center;
    display: flex;
    gap: 5px;
}

.cart-container .cart-product {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 15px;
    position: relative;
}

.cart-container .cart-img img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.cart-container .cart-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-container .info-top h4 {
    font-size: 16px;
    color: #222;
}

.cart-container .info-top span {
    font-weight: normal;
    font-size: 14px;
    color: #777;
}

.cart-container .price-per-pack {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.cart-container .qty-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-container .qty-control button {
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    background: #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-container .qty-control button:hover {
    background: #bbb;
}

.cart-container .qty-control input {
    width: 35px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

.cart-container .remove-section {
    margin-top: 10px;
}

.cart-container .remove-section a {
    color: red;
    text-decoration: none;
    font-size: 14px;
}

.cart-container .cart-price {
    font-weight: bold;
    font-size: 18px;
    color: #222;
    min-width: 70px;
    text-align: right;
}

.cart-container .coupon-box {
    margin-top: 30px;
}

.cart-container .coupon-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-box h3 img {
    max-height: 35px;
}

.cart-container .coupon-form {
    display: flex;
    gap: 10px;
}

.cart-container .coupon-form input {
    flex: 1;
    padding: 8px 8px 8px 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    height: 50px;
}

.cart-container .coupon-form button {
    padding: 0px 14px;
    border: none;
    background: #3b5bcc;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    font-size: 18px;
    line-height: 50px;
}

.cart-container .cart-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.cart-container .cart-right ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.cart-container .checkout-bar {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-bottom: 20px;
}

.cart-container .checkout-btn {
    width: 100%;
    background: #3b5bcc;
    border: none;
    color: white;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    height: 50px;
    font-size: 18px;
}

.cart-container h2 img {
    max-height: 35px;
    margin-right: 5px;
}

.cart-container .checkout-btn:hover {
    background: #0056b3;
}

.cart-container .cart-img {
    background: #eee;
    padding: 20px;
    border-radius: 5px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*-----------------------Checkout Page----------------------------*/
.main-checkout-page {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
}

.main-checkout-order-summary {
    flex: 1 1 400px;
    padding: 30px;
}

.main-checkout-form {
    flex: 0 0 65%;
    padding: 30px;
}

.main-checkout-page h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.main-checkout-page ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-checkout-page ul li {
    margin-bottom: 16px;
    position: relative;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    width: 47%;
    flex: 0 0 0 47%;
}



.main-checkout-page ul li:nth-child(n) {
    animation-delay: calc(0.05s * var(--i));
}

.main-checkout-page input[type="text"],
select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e9f1fb;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.3s ease;
    background: #f7f9fb;
}

.main-checkout-page input[type="text"]:focus,
select:focus {
    border-color: #007BFF;
    background: #fff;
}

.main-checkout-page label.dspl_bc {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-top: 10px;
    gap: 10px;
}

.main-checkout-page label.dspl_bc input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007BFF;
    cursor: pointer;
}

.main-checkout-page .sbmt_area {
    margin-top: 25px;
}

.main-checkout-page .sbmt_area button {
    padding: 14px 30px;
    background: #3b5bcc;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.main-checkout-order-summary tr {
    display: flex;
    justify-content: space-between;
}

.order-summary-tr {
    background: #e9f1fb;
}

.main-checkout-page .sbmt_area button:hover {
    background: #0056b3;
}

.main-checkout-page .main-checkout-order-summary {
    background: #f7f9fb;
    border-left: 1px solid #eee;
}

.main-checkout-page .main-checkout-order-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.main-checkout-page .main-checkout-order-summary th,
.main-checkout-order-summary td {
    padding: 10px;
    font-size: 15px;
    color: #333;
    text-align: left;
}

.main-checkout-page .main-checkout-order-summary th {
    background: #e9f1fb;
}

.main-checkout-page #shippingarea {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.main-checkout-page #shippingarea.active {
    max-height: 1000px;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}
.up-btn {
    position: fixed;
    right: 1%;
    bottom: 5%;
}
.up-btn a {
    display: block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.up-btn a i {
    color: #fff;
}

.menu-toggle {
    width: 30px;
    height: 22px;
    display: flex ;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    margin: 7px 0 0 0;
    display: none;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
}
.related-product {
    margin: 15px 0 0px;
}
.categor-section .products-main h1 {
    text-align: center;
    font-size: 42px;
    margin: 0 0 30px;
}

ul.toc-list li {
    list-style: none;
}


  .qty-selector {
      margin-top: 15px;
      font-family: Arial, sans-serif;
    }

    .qty-selector strong {
      display: block;
      margin-bottom: 10px;
      font-size: 16px;
    }

    .qty-selector .qty-grid {
display: flex;
flex-wrap: wrap;
    gap: 0px;
}

     .qty-selector .qty-option {
      display: none;
    }

.qty-selector .size-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 10px;
    background: #f2f2f2;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    user-select: none;
    min-width: 80px;
}
.contact-page ul {
    margin-bottom: 20px;
    margin-left: 22px;
}
.contact-page ul li
 {
    margin: 10px 0;
}
.qty-selector .size-btn:hover {
      background-color: #3b5bcc;
      color: white;
      border-color: #3b5bcc;
      transform: scale(1.05);
    }

   .qty-selector .size-btn.active {
    background-color: #1a318e;
    color: white;
    border-color: #1a318e;
}
.categor-section .products-main {
    width: 100%;
}
section.categor-section {
    padding: 40px 0 80px;
}
section.breadcrumb ul {
    border-bottom: 1px solid #eee;
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    align-items: center;
}
.categor-section .products-main {
    width: 100%;
    margin: 0 0 35px;
}
section.breadcrumb ul li img {
    max-height: 15px;
}
/* Outer container */
.payment_opt {
    padding: 0;
    background: transparent;
    text-align: center;
}

/* Heading */
.payment_opt > h3
 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    border-top: 1px solid #eee;
    margin-top: 25px;
    padding-top: 15px;
}

/* UL styles */
.payment_opt ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Payment card */
.main_li {
  background: #fff;
  border-radius: 12px;
  width: 220px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.main_li:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Anchor tag */
.main_li a {
    text-decoration: none;
    color: inherit;
    display: flex
;
    padding: 20px;
    gap: 10px;
}

/* Image & caption */
.main_li figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.main_li img {
  max-width: 35px;
  margin-bottom: 0px;
}

.main_li figcaption h4 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
    color: #333;
    line-height: 18px;
    text-align: left;
}

.main_li figcaption span {
  font-size: 14px;
  color: red;
}

/* Bitcoin message */
.btc_msg h4 {
  margin-top: 25px;
  font-size: 18px;
  color: #666;
}
.kamagra-nl-contact-page {
    width: 100%;
    margin: 30px auto 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.kamagra-nl-contact-page-heading {
    font-size: 32px;
}
.contact-form {
  flex: 0 0 65%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s forwards;
}

.contact-info {
  flex: 0 0 30%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s forwards;
}

.contact-form {
  animation-delay: 0.2s;
}

.contact-info {
  animation-delay: 0.4s;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.btn-animate {
  padding: 14px 25px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-animate:hover {
  background: #0056b3;
  transform: scale(1.05);
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    background: #1a318e;
    padding: 15px 0;
    border-radius: 5px;
}
.breadcrumb_main ol {
    display: flex
;
    list-style: none;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}
.breadcrumb_main ol li img{
    max-height: 14px;
}

.contact-info div {
    margin: 0px 0;
    font-size: 1rem;
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}


/* Animations */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.contact-form ul li {
    list-style: none;
}
button.sbmt_btn {
    padding: 14px 30px;
    border: none;
    background: #1a318e;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    border-radius: 3px;
}
.footernewsletter {
   position: relative;
    display: flex;
    gap: 0px;
    width: 70%;
    flex: 0 0 70%;
}
.contant__page p {
    margin: 0 0 25px;
}
.contant__page h2 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #3b5bcc;
}
.coupon_area_cat {
    background: linear-gradient(135deg, #1a318e, #3b5bcc);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}
.coupon_area_cat div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.coupon_area_cat::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(25deg);
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% { transform: rotate(25deg) translateX(-100%); }
    100% { transform: rotate(25deg) translateX(100%); }
}

.price_top {
    font-size: 18px;
    margin-bottom: 15px;
}

.price_top span {
    font-weight: bold;
    background: #fff;
    color: #3756c4;
    padding: 3px 8px;
    border-radius: 6px;
}

.coupon_area_cat h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.coupon_box {
    display: inline-block;
   background: #ffffff00;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 3px;
}

.coupon_box span {
    position: absolute;
    display: block;
}

.coupon_box span:nth-child(1) {
    height: 3px;
    width: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, #ffffff);
    animation: anim1 2s linear infinite;
}

.coupon_box span:nth-child(2) {
    height: 100%;
    width: 3px;
    top: -100%;
    right: 0;
    background: linear-gradient(180deg, transparent, #ffffff);
    animation: anim2 2s linear infinite;
    animation-delay: 0.5s;
}

.coupon_box span:nth-child(3) {
    height: 3px;
    width: 100%;
    bottom: 0;
    right: -100%;
    background: linear-gradient(270deg, transparent, #ffffff);
    animation: anim3 2s linear infinite;
    animation-delay: 1s;
}

.coupon_box span:nth-child(4) {
    height: 100%;
    width: 3px;
    bottom: -100%;
    left: 0;
    background: linear-gradient(360deg, transparent, #ffffff);
    animation: anim4 2s linear infinite;
    animation-delay: 1.5s;
}

@keyframes anim1 {
    0% { left: -100%; }
    50%,100% { left: 100%; }
}
@keyframes anim2 {
    0% { top: -100%; }
    50%,100% { top: 100%; }
}
@keyframes anim3 {
    0% { right: -100%; }
    50%,100% { right: 100%; }
}
@keyframes anim4 {
    0% { bottom: -100%; }
    50%,100% { bottom: 100%; }
}

.coupon_box:hover {
    background: #ff4d6d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
p.stars img {
    height: 10px;
}
.home-top-content h1 {
    font-size: 42px;
    margin: 0 0 10px;
    text-align: center;
        font-family: var(--font-primary-Bold);
    font-weight: 700;
    color: #1a318e;
}
.home-top-content p {
    margin: 0 0 25px;
    text-align: center;
}
.home-top-content {
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.main-sitemap2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0px;
    margin: 25px 0 0;
}
.main-sitemap-bottom.main-sitemap-box {
    margin: 40px 0 0;
}
/* Box Styling */
.main-sitemap-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.6s ease forwards;
}

/* Animation Delay for Staggered Effect */
.main-sitemap-box:nth-child(1) { animation-delay: 0.1s; }
.main-sitemap-box:nth-child(2) { animation-delay: 0.3s; }

/* Heading */
.main-sitemap-box h2 a {
  text-decoration: none;
  color: #3b5bcc;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.main-sitemap-box h2 a:hover {
  border-bottom: 2px solid #3b5bcc;
}

/* List Styling */
.main-sitemap-box ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.main-sitemap-box ul li {
  margin-bottom: 10px;
}

.main-sitemap-box ul li a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}
.main-sitemap-box ul li a:hover {
  color: #3b5bcc;
  transform: translateX(5px);
}

/* Keyframes for fade + slide */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .main-sitemap-box {
    padding: 15px;
  }
  .main-sitemap-box h2 a {
    font-size: 18px;
  }
  .main-sitemap-box ul li a {
    font-size: 14px;
  }
}
.content_page.sitemap h1 {
    text-align: center;
    font-size: 32px;
}
.section-sitemp {
    padding: 10px 0 50px;
}
.main-sitemap-box > ul {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main-sitemap-box > ul li:nth-child(1) {
    width: 45%;
    flex: 0 0 45%;
}
.main-sitemap-box > ul li:nth-child(1) ul{
        display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main-sitemap-box > ul li:nth-child(1) ul li
 {
    width: 50%;
    flex: 0 0 50%;
}
.main-sitemap-box > ul li {
    width: 16%;
    flex: 0 0 16%;
}
.main-sitemap-box .sitemap-box li {
    width: 100% !important;
}
.main-sitemap-box h2 a {
    font-size: 18px !important;
    color: #3b5bcc !important;
}
.main-sitemap-bottom.main-sitemap-box ul li {
    width: 33% !important;
    flex: 0 0 33%;
}
.main-sitemap-bottom.main-sitemap-box h2 {
    font-size: 18px !important;
    color: #3b5bcc !important;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    z-index: 11111;

}
.faq_area {
    border: 1px dashed #3b5bcc;
    padding: 30px;
    border-radius: 30px;
}
.faq_area h3 {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 500 !important;
    font-family: var(--font-primary-Medium);
}
.faq_area div {
    margin: 0 0 25px;
    line-height: 28px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.product-table th,
.product-table td {
  border: 1px solid #ddd;
  padding: 7px 10px;
  text-align: center; font-weight:600;
}
.product-table tr:nth-child(2n){background:#f1f1f1;}
.product-table th {
  background: #3b5bcc; color:#fff;
  font-weight: 600; text-transform:uppercase; padding:12px 10px;
}
