
@import url("https://fonts.googleapis.com/css?family=Open+Sans");

:root {
  --primary: #F9FAFB;
  --secondary: #063659;
  --pri-text: #0a0c0f;
  --sec-text: #6B7280;
  --accent: #F97316;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  font-family: 'Roboto', san-serif, Arial, Helvetica Neue, Helvetica, sans-serif;
}

h1, h2, h3 {
  /*text-transform: uppercase;*/
  font-size: 32px;
  font-weight: 600;
}

body {
  font-family: 'Open Sans', 'Roboto', san-serif, Arial, Helvetica Neue, Helvetica, sans-serif;
  overflow-x: hidden;
  background-color: var(--primary);
  font-size: 14px;
/*  padding: 50px;*/
line-height: 1.5;
color: var(--secondary);
font-weight: 100;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
}

.dash {
  border-bottom: 1px solid var(--accent);
  margin: 1rem auto;
}

.dash {
  width: 10rem;
}


section {
  margin-top: 3rem;
  /*margin-bottom: 3rem;*/
  padding: 0 1.4rem;
}

section h1 {
  text-align: center;
  font-family: serif;
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 100;
}


header .container {
  padding: 0px 15px 0px 15px;
}
@media (min-width: 0) {
  header .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  header .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 576px) {
  header .container {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  header .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 768px) {
  header .container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  header .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 992px) {
  header .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  header .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 1200px) {
  header .container {
    max-width: 1370px;
    margin-left: auto;
    margin-right: auto;
  }
  header .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}

a {
  text-decoration: none;
  color: #000;
}
a:hover, a :focus {
  color: var(--accent);
}

.menu-left a {
  display: inline-block;
  position: relative;
  padding-bottom: 0px;
  transition: color .35s ease;
  font-size: 14px;
}
.menu-left a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: width 0s ease, background .35s ease;
}
.menu-left a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #000;
  transition: width .35s ease;
}
.menu-left a:hover:before {
  width: 100%;
  background: var(--accent);
  transition: width .35s ease;
}
.menu-left a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: var(--primary);
  z-index: 3;
  will-change: transform;
  transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
header nav .logo {
  float: left;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  font-weight: 600;
  color: var(--secondary);
}
header nav .logo:after {
  content: '';
  display: table;
  clear: both;
}
header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  letter-spacing: 3px;
}
header nav ul li {
  float: none;
  margin-left: 0;
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  header nav ul li {
    float: left;
    margin-left: 1.5rem;
  }
}
header nav ul li a {
  display: block;
}
@media (min-width: 576px) {
  header nav ul li a {
    display: block;
    padding: .425rem 0rem;
  }
}

@media (max-width: 768px) {
  ul {
    clear: both;
  }
  ul li {
    padding: .5em 0;
  }
}
.hide-nav {
  transform: translateY(-120% !important);
  -webkit-transform: translateY(-120%) !important;
}

ul.menu-left {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}
@media (min-width: 768px) {
  ul.menu-left {
    display: block !important;
    float: right;
    max-height: none;
  }
}
ul.menu-left:before {
  content: '';
  display: table;
  clear: both;
}
ul.menu-left.collapse {
  max-height: 15em !important;
}

.nav-toggle {
  display: block;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height: 38px;
  width: 38px;
  cursor: pointer;
  padding: 8px 8px;
}
.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4.4px, -4.4px);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background-color: var(--secondary);
  transition: all .25s;
}

.signature {
  position: fixed;
  font-weight: 100;
  bottom: 10px;
  color: #000;
  left: 0;
  letter-spacing: 4px;
  font-size: 10px;
  width: 100vw;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

/*
  ======================================
  =========== ALERT STYLING ============
  ======================================
*/
.alert {
  width: 15rem;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.1), 0 2px 3px hsla(0, 0%, 0%, 0.1);
  display: inline-block;
  border-radius: 10px;
  margin-left: 2rem;
  font-size: 14px;
  position: fixed;
  top: 2rem;
  right: 1rem;
  transition: height 1s ease-out;
  z-index: 100;
/*  padding: .3rem 1rem;*/
}

.alert .i {
  background: red;
  width: 15px;
  border-radius: 5px;
}

.alert .content h2 {
  font-size: 1.1rem;
  margin-bottom: .3rem;
}

.alert p {
  font-size: 0.8rem;
}

.alert .content div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert i {
  font-size: 2rem;
}

.text-danger {
  color: #db0606;
}

.bg-danger {
  background: #db0606;
}

.text-success {
  color: green;
}

.bg-success {
  background: green;
}

.text-warning {
  color: #fcd40f;
}

.bg-warning {
  background: #fcd40f;
}


/*
==============================================
============== SLIDER STYLE ==================
 */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(14, 29, 51, .9), rgba(14, 29, 51, 0.5));
}

.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }
}

.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-slider .carousel-cell .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
}
.hero-slider .carousel-cell .inner .subtitle {
  font-family: "Roboto Slab", serif;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.hero-slider .carousel-cell .inner .title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
.hero-slider .carousel-cell .inner .btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 14px 18px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  transition: all 0.6s ease;
}
.hero-slider .carousel-cell .inner .btn:hover {
  background: #fff;
  color: #000;
}
.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}
.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}
.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}
.hero-slider .flickity-page-dots {
  bottom: 30px;
}
.hero-slider .flickity-page-dots .dot {
  width: 30px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0 solid white;
  border-radius: 0;
}
.hero-slider .flickity-page-dots .dot.is-selected {
  background: #ff0000;
  border: 0 solid #ff0000;
}




/* Animation keyframes */
/* Keyframes */
@keyframes rotateIn {
  from { opacity: 0; transform: translateX(-300px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
  from { opacity: 0; transform: translateX(300px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}

/* Animation classes */
.animate-subtitle {
  animation: rotateIn 0.8s ease forwards;
}

.animate-title {
  animation: bounceIn 0.8s ease forwards;
}

.animate-btn {
  animation: slideInRight 0.8s ease forwards;
}




/*
=============
========== BOOK CARDS STYLING ===========
=============
 */


.book-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  position: relative;

}

.book-card {
    margin-top: 20px;
    background-color: #fff;
    /*  height: 270px;*/
    box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0 0 5px 15px;
    color: ;
    transition: 0.3s ease;
}

.book-card:hover {
  color: inherit;
}

.book-card-img {
  width: 135px;
  height: 180px;
  margin-top: -5px;
  border-radius: 2px;
  box-shadow: 0px 1px 7px 2px #c7c9d3;
  border-bottom: 1px solid #dcddde;
  /*object-fit: cover;*/
/*  margin-bottom: 20px;*/
transition: 0.3s ease;
}
.book-card:hover {
  transform: scale(1.04);
}

.book-name {
  font-size: 14px;
}

.card-content {
  padding: 5px 10px;
  overflow: hidden;
  position: relative;
}

.book-name {
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
}

.book-by {
  font-size: 13px;
  margin-top: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.book-by strong {
  font-weight: 600;
  color: var(--accent);
}



.card-sum {
  margin: 0;
  color: var(--pri-text);
  font-size: 13px;
  line-height: 1.6em;
  -webkit-line-clamp: 4;
  margin-top: 15px;
}

.content-wrapper {
  display: flex;
/*  border-bottom: 1px solid #ebedef;*/
position: relative;
}


@media (max-width: 1103px) {
  .book-cell {
    width: 60%;
  }
}
@media (max-width: 765px) {
  .book-cell {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .book-cell {
    width: 100%;
  }
}
@media (max-width: 458px) {
  .book-photo {
    width: 180px;
  }

  .book-voters {
    display: none;
  }
}
@media (max-width: 420px) {
  .book-see {
    width: 120px;
    font-size: 13px;
  }

  .book-photo {
    width: 130px;
  }

  .main-wrapper {
    margin-top: 50px;
  }
}
@media (max-width: 360px) {
  .rating > label:before {
    font-size: 0.8em;
  }
}
@media (max-width: 1220px) {
  .card-vote {
    display: none;
  }
}
@media (max-width: 1085px) {
  .book-rate > label {
    font-size: 0.7em;
  }
}
@media (max-width: 1045px) {
  .books-of {
    display: none;
  }
}
@media (max-width: 725px) {
  .browse-category, .search-bar {
    display: none;
  }

  .header-title {
    margin-right: auto;
  }

  .book-cards {
    grid-template-columns: 1fr;
  }

  .book-types {
    display: none;
  }
}
@media (max-width: 372px) {
  .card-content {
    padding: 20px;
  }
}

.book-card-footer {
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.book-card-footer .price span {
  font-size: 16px;
  font-weight: 600;
}

.btn-container {
  text-align: center;
}

.more-btn {
  margin-top: 1rem;
  display: inline-block;
  /*border: 1px solid inherit;*/
  border-radius: .4rem;
  background: var(--accent);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .3);
  padding: 12px 16px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background: var(--primary);
  color: var(--accent);
  /*border: 1px solid var(--accent);*/
}

.buy-btn {
  display: inline-block;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: .5rem 1rem;
  font-weight: 600;
  margin-top: 1rem;
  background: none;
  transition: .2s linear;
}

.buy-btn:hover {
  color: var(--secondary);
  border: 1px solid var(--secondary);
}


/*
=============================================
========= CATEGORIES LINK STYLING ===========
=============================================
*/

.card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* smaller min size */
  gap: 1.2rem;
  justify-content: center;
  padding: 1rem;
}

@media (max-width: 600px) {
  .card-section {
    grid-template-columns: repeat(2, 1fr); /* force 2 columns */
  }
}

.genre-card {
  position: relative;
  width: 100%;
  max-width: 275px;
  aspect-ratio: 275 / 280;   /* keeps proportions */
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #14111C;       /* fallback background */
}

/*.genre-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}*/

.genre-card .top-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.genre-card .top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* image fills while keeping ratio */
  transition: transform 0.5s ease;
}

.genre-card:hover .top-image img {
  transform: scale(1.1); /* zooms inside */
}

.genre-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);  /* lighter overlay by default */
  z-index: 1;
  transition: background 0.4s ease; /* smooth fade */
}

.genre-card:hover::before {
  background: rgba(0,0,0,0.65);  /* stronger overlay on hover */
}

.genre-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;                 /* above overlay */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
}

.genre-card .title {
  text-transform: capitalize;
  font-family: 'Times New Roman', serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.5s ease, text-shadow 0.4s ease;
}

.genre-card .sub-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease, text-shadow 0.4s ease;
}

/* Hover effect for text */
.genre-card:hover .title,
.genre-card:hover .sub-title {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/*
=============================================
========= AFFILIATE SECTION ===========
=============================================
*/


.affiliate-container .content {
  display: grid;
  row-gap: .5rem;
}

.steps-container .steps {
  display: flex;
  justify-content: space-around;
}

.steps-container .steps span{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary);
}

.steps-container .steps i {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  font-size: 16px;
  padding: 1.5rem;
  background: var(--sec-text);
}

/*
======================================
=======TESTIMONIAL ================
======================================
*/
.testimonial-section {
  width: 90%;
  /*max-width: 800px;*/
  margin: 1rem auto;
  overflow: hidden; /* important! */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-slider {
  display: flex;
  width: 100%; /* 3 testimonials */
  animation: slide 12s infinite;
}

.testimonial {
  width: 100%; /* take full container width */
  flex-shrink: 0; /* prevent shrinking */
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.testimonial h4 {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.testimonial img {
  width: 100px;
  height: 100px;
  background: gray;
  border-radius: 50%;
}

@keyframes slide {
  0%, 20% {
    transform: translateX(0%);
  }
  25%, 45% {
    transform: translateX(-100%);
  }
  50%, 70% {
    transform: translateX(-100%);
  }
  75%, 95% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}


/*
======================================
=======TESTIMONIAL ================
======================================
*/


.leaderboard .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  /*column-gap: 2rem;*/
}

.leaderboard .container .earner-row {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  color: #fff;
  background: linear-gradient(to right,  rgba(30,87,153,1) 47%,rgba(32,124,202,1) 75%,rgba(41,137,216,1) 92%,rgba(125,185,232,1) 100%);
  border-radius: .5rem;
  padding: 1rem 0;
  margin-top: 1rem;
}

.leaderboard .container .earner-row .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ccc;
  padding: 0 1rem;
}

.leaderboard .container .earner-row .icon i {
  font-size: 22px;

}

.leaderboard .container .earner-row .details {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 1rem;
  align-items: center;
  padding: 0 .5rem;
}

.leaderboard .container .earner-row .details .logo {
  padding: 0 .2rem;
}

.leaderboard .container .earner-row .details .logo .dp{
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.leaderboard .container .earner-row .details .info {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
  align-items: center;
}

.leaderboard .container .earner-row .details .info strong {
  text-align: center;
  font-weight: 600;
  letter-spacing: 3px;
}

.leaderboard .container .earner-row .details .info h4 {
  text-transform: capitalize;
}

.leaderboard .container .earner-row .details .info small {
  font-size: 10px;
  letter-spacing: 1px;
  color: #e5e5e5;
}

.leaderboard .container .earner-row .details .total-earned {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
}


/* ==========LEADERBOARD TABLE========= */
.leaderboard .container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  margin-top: 1rem;
}

.leaderboard .container table thead {
  background: linear-gradient(to right,  rgba(30,87,153,1) 47%,rgba(32,124,202,1) 75%,rgba(41,137,216,1) 92%,rgba(125,185,232,1) 100%);
  color: #fff;
  font-weight: 600;
}

.leaderboard .container table th, td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ccc;
}


/* ======= LISTING PAGE ============ */
section.heading {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

section.heading h2 {
  font-size: 14px;
}

/* AFFILIATE PAGE */
.sub-hero {
  /* Layout and Spacing */
  max-width: 900px;
  margin: 40px auto; /* Center the section and add vertical space */
  padding: 30px;
  text-align: center;

  /* Appearance */
  background-color: #f4f7fa;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  font-family: Arial, sans-serif;
  color: #000;
}

.sub-hero h2 {
  font-size: 2em;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1.2;
}

.sub-hero h2 span {
  display: block; /* Puts the main hook on its own line */
  font-size: 0.8em;
  color: var(--pri-text); /* Muted color for the secondary part */
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.sub-hero p {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* --- Features List Styling --- */

.sub-hero ul {
  list-style: none; /* Remove default list markers */
  padding: 0;
  margin: 30px 0;
  display: grid; /* Use CSS Grid for a nice layout */
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 15px; /* Space between grid items */
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sub-hero li {
  background-color: #ffffff; /* White background for list items */
  padding: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--accent); /* Green accent on the left */
  font-size: 1em;
  color: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-hero li:hover {
  transform: translateY(-3px); /* Slight lift on hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sub-hero li span {
  color: var(--accent); /* Green checkmark color */
  font-weight: bold;
  margin-right: 8px;
}

/* --- Call-to-Action Button Styling --- */

.sub-hero .more-btn {
  display: inline-flex; /* Allows for icon alignment */
  align-items: center;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: var(--secondary); /* Eye-catching primary button color (Yellow/Gold) */
  color: var(--primary); /* Dark text for contrast */
  text-decoration: none;
  /*border-radius: 50px;*/
  font-weight: bold;
  font-size: 1.1em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
  /*border: 2px solid #ffc107;*/
}

.sub-hero .more-btn:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

.sub-hero .more-btn i {
  margin-left: 10px;
  font-size: 1em;
}

/*
 ======================
 DEFAULT SECTION STYLE
 ======================
 */
.default {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px 20px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.default h2 {
  font-size: 1.8em;
  color: var(--pri-text);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

/* Subtle underline effect for the heading */
.default h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

/* --- Counter Initialization and Desktop Steps --- */

.default ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  counter-reset: step-counter;
}

.default li {
  flex: 1;
  max-width: 300px;
  padding: 25px;
  text-align: center;
  background-color: #f8f9fa;
  color: var(--secColor);
  border-radius: 10px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.default li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.default li span {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Step Number (Centered on all screen sizes) */
.default li:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: block; /* Ensures it takes up its own line and can be centered */
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto 15px auto;
  background-color: var(--secondary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2em;
  font-weight: bold;
  border: 3px solid #e9ecef;
  box-shadow: 0 0 0 4px #007bff40;
}

/* --- Responsiveness for smaller screens (Mobile) --- */

@media (max-width: 768px) {
  .default ul {
    flex-direction: column;
    align-items: center;
  }

  .default li {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    /* Keep text-align: center; here to center the number and text */
    text-align: center;
  }
}

/*
======================
=== AFFILIATE REG FORM
=======================
*/

.affiliate-form-section {
  /*padding: 10px;*/
  background-color: #f4f7f9;
  display: flex;
  column-gap: 5rem;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .affiliate-form-section .action-image {
    display: none;
  }
}

.aff-form-container {
  max-width: 600px;
  margin: 40px 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.aff-form-container h3 {
  text-align: center;
  color: var(--pri-text);
  font-size: 1.8em;
  margin-bottom: 10px;
}

.form-description {
  text-align: center;
  color: var(--sec-text);
  margin-bottom: 30px;
}

/* --- Startup Fee Display Styling --- */
.fee-display-box {
  text-align: center;
  padding: 15px;
  border: 2px solid #ffc107; /* Eye-catching border */
  background-color: #fff9e6; /* Light yellow background */
  border-radius: 8px;
  margin-bottom: 25px;
}

.fee-display-box p {
  margin: 5px 0;
  font-size: 1.1em;
  color: #343a40;
}

.fee-display-box strong {
  color: var(--accent); /* Red for the full price */
  font-size: 1.2em;
}

.fee-note {
  font-weight: 600;
  color: #28a745 !important; /* Green for the discount price */
  margin-top: 10px !important;
}



/* CALL TO ACTION */

.cta {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.cta .more-btn {
  background: #fff;
  color: var(--pri-text);
}


/*
=========================================
========== SHOW PRODUCT STYLE ===========
=========================================
*/

.prod-container {
}

.prod-detail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.prod-detail .prod-image {

}

.prod-detail .prod-image img {
  width: 100%;
}

.prod-detail .prod-info {

}

.prod-detail .prod-info h2 {
  color: var(--secondary);
}

.prod-detail .prod-info h3 {
  font-size: 14px;
}

.prod-detail .prod-info h3 span{
  color: var(--accent);
}

.prod-detail .prod-info .price {
  color: var(--accent);
  font-size: 38px;
  font-family: 'Titillium Web';
  font-weight: 200;
}

.prod-detail .prod-info p {
  color: var(--pri-text);
  line-height: 1.8rem;
}



/*
=================== REVIEW STYLING ============
 */
.prod-container .prod-review {
  margin-top: 2rem;
}

.prod-container .prod-review .content {
  /*background: red;*/
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.review-container {
/*  display: block;*/
/*  background: red;*/
margin-top: 1rem;
font-size: 14px;
}

.review-container .user-review {
  padding: .4rem;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .3);
  margin-bottom: 1.5rem;
/*  border: 1px solid blue;*/
}

.review-container .user-review .head {
  margin: .5rem 0px;
}

.review-container .user-review .head .username-date {
  display: flex;
  justify-content: space-between;
}

.review-container .user-review .head .rate {
  margin-top: .5rem;
}

.review-container .user-review .head .rate-date {
  margin-top: .5rem;
  display: flex;
  justify-content: space-between;
}

.review-container .user-review .head .rate .fa-solid {
  color: #ee9a09;
}

.review-container .user-review .body {

}

.review-container .user-review .body .review-title {
  font-weight: 600;
  font-size: 15px;
}

.review-container .user-review .body p {
  margin-top: .4rem;
  line-height: 1.2rem;
}

.review-container .user-review .reply {
/*  display: none;*/
background: #f1f1f1;
padding: .5rem;
}

.review-summary {
  /*margin-top: 2rem;*/
  padding: 1rem;
  width: 100%;
}

.review-summary .head span {
  font-weight: bold;
  font-size: 16px;
  display: block;
}

.review-summary .head p {
  font-size: 14px;
  margin-top: .5rem;
}

.review-summary .body {
  margin-top: 1rem;
}

.review-summary .body .row {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

.review-summary .body .row label {
  margin-left: .5rem;
}

.review-summary .body .check {
  display: flex;
}

.review-summary .body .bar {
  height: 4px;
  width: 60%;
  margin: 0px 1rem;
  background: #eee;
}

.review-summary .body .bar .progress {
  background: var(--accent);
  height: 4px;
}



.review{
  width: 99%;
  padding: .5em;
  margin-bottom: 1em;
  box-shadow: 0px 0px 7px rgba(0,0,0,0.5);
}

.review .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* FORM STYLE */

.add-review {
  width: 100%;
  margin-top: 2rem;
}


.review-exp {
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.review-exp .form-row {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.review-exp .form-row textarea {
  height: 5rem;
  padding: 5px;
}

.review-exp .form-row button {
  width: 35%;
  border: none;
  outline: none;
  padding: .4rem;
  background: var(--secondary);
  color: var(--primary);
}



/*
  ========= CART PAGE STYLE ========
*/

.table-container {
  width: 100%;
  overflow-x: auto;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.table-container th,
.table-container td {
  padding: 14px 16px;
  border: 1px solid #eee;
  text-align: left;
  /*font-size: 12px;*/
}

.table-container th {
  background-color: #f4f4f4;
  font-weight: 600;
}

.table-container tr:hover {
  background-color: #f4f6f9;
}

.table-container .product-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  justify-content: space-between;
}

.table-container .product-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.table-container .action {
  vertical-align: middle;
}

.remove-btn {
  color: #d9534f;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.remove-btn:hover {
  color: #c9302c;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .table-container table,
  .table-container thead,
  .table-container tbody,
  .table-container th,
  .table-container td,
  .table-container tr {
    display: block;
    border: none;
  }

  .table-container thead {
    display: none;
  }

  .table-container thead {
    display: none; /* hide header on mobile */
  }

  .table-container tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .table-container td {
    text-align: right;
    padding: 10px 0;
    border: none;
    position: relative;
  }

  .table-container td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: 600;
    text-align: left;
    color: #555;
  }

  .table-container .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem;
  }
}



/*
======== COUPON STYLE =======
*/
.coupon-form {
  max-width: 400px;
  margin: 20px auto;
}

.coupon-input-wrapper {
  display: flex;
  position: relative;
}

.coupon-input {
  flex: 1;
  padding: 10px 100px 10px 10px; /* leave space for the button inside */
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.apply-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
  background: none;
  color: white;
  padding: 0 20px;
  font-size: 14px;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #000;
  font-weight: 600;
  border-left: 1px solid #ccc;
  transition: .3s linear;
}

.apply-btn:hover {
  color: var(--accent);
}


.cart-totals h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.cart-totals table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart-totals td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: right;
}

td.label {
  background-color: var(--secondary);
  color: #fff;
  font-weight: bold;
  text-align: left;
  width: 30%;
  border: none;
}

td.o-label {
  font-weight: 600;
  width: 75%;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background-color: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
}


/*
====== THANK YOU PAGE STYLE =======
*/
section.order-info .info-card {
  /*background: #f1f1f1;*/
  padding: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

section.order-info .info-card div {
  display: flex;
  flex-direction: column;
}

section.order-info .info-card div small {
  color: var(--sec-text);
}

section.order-info .info-card div strong {
  color: var(--pri-text);
  font-weight: 600;
}


/* PROFILE PAGE STYLE */
section.info-container {
  max-width: 600px;
  margin: 10px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  /*color: #333;*/
}

.info-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.info-label {
  font-weight: bold;
  color: #555;
  width: 10rem;
}

.info-value {
  color: #222;
  text-align: left;
  word-break: break-word;
  font-weight: 600;
}


.link-btn {
  /*padding: 0 1.5rem;*/
  margin: .5rem 0;
}

.link-btn a {
  background: var(--secondary);
  color: #fff;
  padding: .5rem 1rem;
  font-weight: 600;
  border-radius: 5px;
}


.earnings-table-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/*h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}*/

.earnings-table {
  width: 100%;
  border-collapse: collapse;
}

.earnings-table th, .earnings-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.earnings-table th {
  background-color: #f0f0f0;
  color: #333;
}

.status.approved {
  color: green;
  font-weight: bold;
}

.status.pending {
  color: orange;
  font-weight: bold;
}

.earnings-table tr:hover {
  background-color: #f9f9f9;
}

.load-more-container {
  /*text-align: center;*/
  margin-top: 20px;
}

#loadMoreBtn {
  background-color: var(--secondary);
  color: white;
  padding: 7px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#loadMoreBtn:hover {
  background-color: var(--accent);
}



/*
  ======== DASHBOARD =========
*/

/*.container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 15px;
}*/

/* Stats Cards */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.stat-card h3 {
  font-size: 1rem;
  color: var(--secondary);
}

.stat-card p {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent);
}

/* Withdraw Button */
.withdraw-btn {
  text-align: right;
  margin-bottom: 20px;
}

.withdraw-btn button {
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.withdraw-btn button:hover {
  opacity: 0.9;
}

/* Promo Materials */
.promo-materials {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.ref-link {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 15px;
}

.ref-link input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  letter-spacing: .6rem;
}

.ref-link button {
  background: var(--secondary);
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.banners ul {
  list-style: none;
}

.banners li {
  margin-bottom: 8px;
}

.banners a {
  color: var(--accent);
  text-decoration: none;
}

/* Transactions Table */
.transactions {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.transactions table {
  width: 100%;
  border-collapse: collapse;
}

.transactions th, .transactions td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.transactions th {
  background-color: #f5f5f5;
}

.income {
  color: green;
  font-weight: bold;
}

.processing {
  color: orange;
  font-weight: bold;
}

.payout {
  color: blue;
  font-weight: bold;
}

/* Load More Button */
.load-more {
  text-align: right;
  margin-top: 15px;
}

.load-more button {
  background: var(--accent);
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.load-more button:hover {
  opacity: 0.9;
}

/* Profile Management */
.profile {
  background: white;
  padding: 20px;
  border-radius: 8px;
}

.profile-info p {
  margin-bottom: 8px;
}

.profile-info a {
  color: var(--accent);
  text-decoration: none;
}


/* Responsive */
@media (max-width: 600px) {
  .ref-link {
    flex-direction: column;
  }
  .withdraw-btn {
    text-align: center;
  }
}


/* ======== LOGIN PAGE ============= */

/* Form Container */
.form-container {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--pri-text);
}

/* Form Heading */
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary);
}

/* Input Group */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--secondary);
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  color: var(--pri-text);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Submit Button */
.form-btn {
  width: 100%;
  background-color: var(--accent);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.form-btn:hover {
  background-color: #ea580c;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }
  .form-btn {
    font-size: 14px;
  }
}



/*
  PAGE LOADING ANIMATION
*/


.loader-container {
  background: black;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: .9;
}
.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.loader .inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.loader .inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid #F97316;
}

.loader .inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid #F97316;
}

.loader .inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid #F97316;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}














/* ============= RATING STAR STYLING CODE =========== */
.user-r-star{
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 100%;
  /*margin-top: 1rem;*/
}

.user-r-star > input {
  display: none;
}

..user-r-star > label {
  margin-right: 5%;
}

.user-r-star > label:before{
  display: inline-block;
  font-size: 1.4rem;
  padding: .3rem .2rem;
  margin: 0;
  cursor: pointer;
  font-family: FontAwesome;
  content: "\f006"; /* full star */
}

.user-r-star input:checked ~ label, /* color current and previous stars on checked */
.user-r-star label:hover, .user-r-star label:hover ~ label {
  /*color: #f4e909;*/
  color: #FF9800;
} /* color previous stars on hover */

.user-r-star input:checked ~ label:before {
  font-family: FontAwesome;
  content: "\f005 "; /* full star */
}

.user-r-star input:checked ~ label, /* color current and previous stars on checked */
.user-r-star label:hover, .user-r-star label:hover ~ label {
  /*color: #f4e909;*/
  color: #FF9800;
} /* color previous stars on hover */

/* Hover highlights */
.user-r-star input:checked + label:hover, .user-r-star input:checked ~ label:hover, /* highlight current and previous stars */
.user-r-star input:checked ~ label:hover ~ label, /* highlight previous selected stars for new rating */
.user-r-star label:hover ~ input:checked ~ label /* highlight previous selected stars */ {
  /*color: #FF9800;*/
  color: #f4e909;
}

.details-modal-content .r-r-body{
  margin-top: 1em;
}


/* Review Listing styling */




/* CART ICON */
.cart-icon-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

.cart-icon {
  position: relative;
  background: var(--secondary);
  color: #fff;
  font-size: 18px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.cart-icon:hover {
  background: #333;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: red;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 8px;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 0.5s ease-in-out;
}



/* PAGINATION STYLE */
.pagination-summary {
  margin: 1rem 0px;
  font-size: 14px;
  font-weight: bold;
  color: #777;
}
#pagination {
  margin-top: 2rem;
  font-size: 14px;
/*  background: red;*/
}

#pagination ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*display: flex;
  flex-direction: row;
  justify-content: center;*/
/*  width: 100%;*/
}

#pagination ul li {
/*  padding: .4rem;*/
  border: 1px solid var(--altColor);
  display: flex;
  align-items: center;
  justify-content: center;

}

#pagination .num-list {
  display: none;
}

#pagination ul li a, #pagination ul .active, #pagination ul li i {
  padding: .5rem 1rem;
  font-weight: bold;
  color: var(--priColor);
  width: 100%;
  text-align: center;
  transition: .2s linear;
}

#pagination ul li a:hover {
  background: rgba(84, 105, 212, .8);
  color: #fff;
}

#pagination li.disabled {
  pointer-events: none;
  background-color: #eee;
  color: #777;
}

#pagination ul .active {
  pointer-events: none;
  background-color: rgba(84, 105, 212, .8);
  color: #fff;
}










/*========== FOOTER STYLING =============*/
footer{
  background: var(--priColor);
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset;
  color: var(--secColor);
}

footer h2{
  color: var(--accent);
  font-size: 18px;
  font-weight: bold;
  font-family: cursive;
}

footer .container{
  padding: 1rem 1.5rem;
}

footer .container .cont{
  margin-top: 1.5em;
}

footer .container .c2{
 display: grid;
 grid-template-columns: auto auto;
}

footer .container .c2 ul, footer .container .handle{
  margin-top: 1em;
}

footer .container .handls{
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
}

footer .container .handls i{
  font-size: 1.5em;
}

.fa-facebook{
  color: #3b5998;
}

.fa-x-twitter{
  color: #55acee;
}

.fa-telegram{
  color: #0088cc;
}

.fa-instagram{
  color: #d62976;
}

.fa-linkedin{
  color: #0E76A8;
}

.fa-whatsapp {
  color: #25D366;
}



footer .container .cont ul li{
  margin-top: 1em;
}

footer .container .cont a{
  color: var(--color3);
  transition: .2s linear;
}

footer .container .cont a:hover{
  opacity: .7;
}
