/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.form-select.form--control.select2-auto-tokenize {
  display: none;
}

.form-select.form--control.select2-hidden-accessible {
  display: none;
}


.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}



/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: .375rem !important;
  padding: .375rem .75rem !important;
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: rgb(var(--main)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: .375rem !important;
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--main));
  border-radius: 5px;
  border: 0;
  margin-block: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--main));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid rgb(var(--main));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--main));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  min-width: max-content;
  margin-bottom: 0px;
  text-align: left;
  flex-shrink: 0;
}

.deposit-info__input {
  text-align: right;
  flex: 1;
  max-width: 230px;

  @media (max-width: 425px) {
    max-width: 100%;
    width: 100%;
    flex: unset;
  }
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.adjust-height .payment-system-list.is-scrollable {
  max-height: 461px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}



/* ////////////////// select 2 css //////////////// */

.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 1px !important;
  border-radius: 4px !important;
  padding: .375rem .75rem !important;
  height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: rgb(var(--main)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: .375rem !important;
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: #1e2746 !important;
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;

  @media (max-width: 425px) {
    flex-direction: column;
    align-items: flex-start;
  }

}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}


.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #e9e9eb;

  .deposit-info__input-group-text {
    align-self: center;
    padding-inline: 10px;
    border-right: 1px solid hsl(var(--black) / .1);
  }

  .form--control[readonly]{
    background-color: transparent !important;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}


p.small.text-muted {
  margin-bottom: 0;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-container:has(.select2-selection--single),
.select2-container:has(.select2-selection--multiple) {
  width: 100% !important;
}

.selection {
  display: block;
  width: 100%;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ebebeb !important;
  padding: 5px 15px !important;
  border-radius: 5px;
}


/* alert design css */

.alert {
  margin-bottom: 0;
  font-weight: 400;
  padding: 17px 24px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
  .alert {
    padding: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert {
    padding: 12px;
  }
}

.alert__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.alert__content {
  width: calc(100% - 24px);
  padding-left: 32px;
}

@media screen and (max-width: 991px) {
  .alert__content {
    padding-left: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert__content {
    padding-left: 0;
    width: 100%;
    margin-top: 6px;
  }
}

.alert__title {
  color: hsl(var(--base-two) / 0.8);
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.alert__desc {
  color: hsl(var(--base-two) / 0.5);
  display: block;
  line-height: 1.375;
}

@media screen and (max-width: 424px) {
  .alert__desc {
    font-size: 0.8125rem;
  }
}

.alert__link {
  position: relative;
}

.alert--info {
  border: 1px solid rgb(0 147 255 / 30%);
  background-color: rgb(0 147 255 / 5%);
}

.alert--info .alert__icon {
  color: rgb(0 147 255);
}

.alert--primary {
  border: 1px solid rgb(70 52 255 / 30%);
  background-color: rgb(70 52 255 / 5%);
}

.alert--primary .alert__icon {
  color: rgb(70 52 255);
}

.alert--danger {
  border: 1px solid rgb(220 53 69 / 50%);
  background-color: rgb(220 53 69 / 5%);
}

.alert--danger .alert__icon {
  color: rgb(220 53 69);
}

.alert--warning {
  border: 1px solid rgba(220, 206, 53, 0.5);
  background-color: rgba(220, 206, 53, 0.05);
}

.alert--warning .alert__icon {
  color: rgba(220, 206, 53);
}

.input-group-text {
  border-radius: 4px;
}






.preloader {
    display: none !important;
}

.user-gallery {
    background: none;
}
 


.banner-two-category {
  
    display: none !important;
}

.user-gallery {
    background: none;
}


.text--success {
    color: #28C76F !important;
}



.banner-two-section::after {
   
    background-color: hsl(0deg 0% 0% / 0%)!important;
}




.header-two .nav-container {
    background: hsl(0deg 0% 0% / 0%)!important;
}


.header-two.fixed-header {
    background-color: hsl(0deg 0% 100%)!important;
}

.signup-btn {
    border: 1px solid hsl(0deg 0% 0%)!important;
    border-radius: 4px;
    color: hsl(0deg 0% 0%)!important;
}

/* Home page specific CSS */
body.home .header-two  {
    background-color: hsl(0deg 0% 0% / 0%); /* বা তোমার পছন্দের হালকা বা ভিন্ন কালার */
}


.logout-menu {
    background: hsl(var(--base));
    color: white!important;;
    margin-top: 5px!important;;
}

.profile__divider{
    margin:5px 0;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu.left-menu {
    margin-right: auto; /* বাম দিকে ঠেলে দেবে */
    margin-left: 50px;
}

.primary-menu.right-menu {
    margin-left: auto; /* ডান দিকে ঠেলে দেবে */
    gap: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .primary-menu.left-menu,
    .primary-menu.right-menu {
        width: 100%;
        margin: 0;
    }
    
    .primary-menu.right-menu {
        margin-top: 15px;
        justify-content: flex-start;
    }
}



@media screen and (min-width: 992px) {
    .primary-menu__sub {
     box-shadow: 0 5px 15px hsl(230deg 20% 20% / 26%)!important;
     background-color: hsl(var(--white)) !important;
    }
}

.header-two.fixed-header {
    border-bottom: 0px solid hsl(0deg 0% 100% / 0%)!important;
    transition: 0.1s linear;
}



.signup-btn--dark:hover {
     background: hsl(var(--base));
     color: white!important;
     border-color: white !important;
}

.uploadbtn{
     margin-right:20px;
     padding: 6px 10px;
     margin-top: 6px;
}
 
@media screen and (min-width: 992px) {
.logo {
    max-width: 100%!important;
  }
}
.header-two .nav-container {
    padding-bottom: 5px!important;
   }
}

#sociallistbtn {
    display: inline-grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)); 
}


 



.join-thumb {
  
    height: 200px !important;
  }

 



.contact__left {
    display:none;
  
  }


.col-xxl-555 {
    width: 100%;
}

.logo__login {
    width: 100%;
    padding: 0px 100px;
}

.login-form2 {
    padding: 0px 40px 40px 50px !important;
}
.custom--modal .modal-header {
    padding: 0.6rem 1rem;
    border-bottom:none;
}

  .signup-btn {
    padding: 5px 20px;
    margin-top: 6px;
}
  
 
  
  .photo-details__title-link {
    display: block;
    padding-left: 0.5rem;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1;
    color: hsl(var(--accent));
    margin-top: 30px;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    padding-left: 0px;
}
  
  
.underline {
    margin-bottom:15px;
    width: 100px;
    height: 1px;
    background-color: rgb(227, 227, 227);
    margin-top: 3px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.underline span {
    width: 17px;
    background-color: rgb(33, 33, 33);
    position: absolute;
    height: 100%;
    left: 10px;
    border-radius: 3px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}
  
  .footer-divider{
    padding-top:18px;
  }
  
  
  .footer-top__left {
    display: flex;
    align-items: center;
}
.footer-logo {
    width: 160px;
    height: auto;
    margin-right: 10px;
}
.sm-text2 {
    margin-left: 5px;
    color: #C8C8C8;
}
.footer__copyright {
    background: #2A2A2A !important;
}
.logo__login{ 
    padding: 0px 100px 0px 100px;
}
.footer-nav-item:hover .brand-link {
    color: #ffffff !important;
}


.photo-details__head1 {
padding: 1rem ;
  
}

.btn--base2 {
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background:#275EFE;
    color: hsl(var(--white));
    width:100%;
    padding: 18px 0px 18px 0px;
    font: normal normal 700 14px / 16px Poppins, sans-serif;
    letter-spacing: .14px;
}

.pricef {
    font-size:20px;
}


.photo-details1 {
    padding: 0px;
}
 ul {
     margin-bottom: 0rem !important;
}


.t-link2 {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #c8c8c8 !important;
}


@media (min-width: 1200px) {
    .col-xl-9 {
        flex: 0 0 auto;
        width: 70%;
    }
}


@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 auto;
        width: 29%;
    }
}



.div1 {
    background-color: #fff;
    border: 1px solid #ebecf0;
    border-radius: 16px 16px 16px 16px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(25, 27, 38, .06);
}


.photo-details__head1 {
    padding: 1rem;
    background-color: #ffffff;
}

.photo-details__body {
   background-color: #ffffff;
   padding: 0px 20px;
}


.user__name {
    font-size: 16px;
    margin-bottom: 4px;
}

.user_resources {
    font-size: 15px;
 }

.follow-btn {
     padding: 12px 20px;
 }

.user{
     padding: 0px 20px 0px 20px;
}


.hrd {
     margin: 0px;
}


.photo-details__body_btn {
     margin: 0px 20px;
}

.photo-details {
    border-radius: 5px;
    background: #ffffff;
}


.photo-view__img {
    max-height: 570px;
}

 
 

/* প্রধান কন্টেইনার স্টাইল */
.productinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 15px;
    padding: 10px 0;
}

/* প্রতিটি বাটন কন্টেইনার */
.productinfo__btn {
    flex: 1;
    display: flex;
}

/* বাম পাশের বাটন - বামে ২০px মার্জিন */
.left-btn {
    justify-content: flex-start;
    margin-left: 20px;
}

/* মাঝের বাটন */
.center-btn {
    justify-content: center;
}

/* ডান পাশের বাটন - ডানে ২০px মার্জিন */
.right-btn {
    justify-content: flex-end;
    margin-right: 20px;
}

/* বেসিক বাটন স্টাইল */
.info__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* বাটন হোভার ইফেক্ট */
.info__btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* বাটন টেক্সট স্টাইল */
.btn-text {
    font-size: 14px;
    font-weight: 500;
}

/* আইকন স্টাইল */
.las {
    font-size: 18px;
}

/* লাইক বাটন এক্টিভ স্টাইল */
.la-heart.active {
    color: #ff4757;
}

/* মোবাইল রেসপনসিভ */
@media (max-width: 768px) {
    .btn-text {
        display: none;
    }
    
    .info__btn {
        padding: 8px 12px;
    }
    
    .las {
        font-size: 16px;
    }

    /* মোবাইলে মার্জিন কমিয়ে দেওয়া */
    .left-btn {
        margin-left: 10px;
    }
    
    .right-btn {
        margin-right: 10px;
    }
}

.mt-2 {
    margin-right: 26px;
}



.social-list__icon [class*=facebook]  {
    background: #000000 !important;
    color: #ffffff;
}

.social-list__icon [class*=twitter]  {
    background: #000000 !important;
    color: #ffffff;
}

.social-list__icon [class*=linkedin]  {
    background: #000000 !important;
    color: #ffffff;
}

.social-list__icon [class*=instagram]  {
    background: #000000 !important;
    color: #ffffff;
}


.social-list__icon [class*=pinterest]  {
    background: #000000 !important;
    color: #ffffff;
}

.social-list {
    margin-left: -10px;
}

.footer-top__right .form-select {
         border: 1px solid #575757!important;
 }

.lang--dark .form-select {
     
    background-color:hsl(0deg 0% 0%); 
}




.content-item__thumb img {
    border-radius: 10px;
}

/* ==========================================================================
   MAGNIFIC DARK THEME STYLES (HOMEPAGE OVERHAUL)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

body {
    background-color: #09090b !important;
    color: #f4f4f5 !important;
    font-family: var(--font-sans) !important;
}

body h1, body h2, body h3, body h4, body h5, body h6, 
body p, body a, body span, body button, body input, body select, body textarea {
    font-family: var(--font-sans) !important;
}



.hdr-inner {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1536px !important; /* max-w-screen-2xl */
    width: 100% !important;
    min-height: 4rem !important; /* min-h-16 (64px) */
    padding-left: 2rem !important; /* px-8 */
    padding-right: 2rem !important;
    padding-top: .75rem !important; /* py-3 */
    padding-bottom: .75rem !important;
    flex-wrap: wrap !important;
    gap: 1rem !important; /* gap-4 */
}

@media (min-width: 640px) {
    .hdr-inner {
        flex-wrap: nowrap !important; /* sm:flex-nowrap */
    }
}

@media (min-width: 1024px) {
    .hdr-inner {
        min-height: 72px !important; /* lg:min-h-[72px] */
        gap: 2.25rem !important; /* lg:gap-9 */
    }
}

@media (min-width: 1280px) {
    .hdr-inner {
        gap: 2.75rem !important; /* xl:gap-11 */
    }
}

.hdr-link {
    color: #a1a1aa !important;
    font-weight: 500 !important;
}

.hdr-link:hover,
.hdr-drop-toggle:hover {
    color: #ffffff !important;
}

.hdr-btn--ghost {
    color: #ffffff !important;
}

.hdr-btn--upload {
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: 30px !important;
    border: none !important;
}

.hdr-search-input {
    /* background: rgba(255,255,255,0.05) !important; */
    /* border: 1px solid rgba(255,255,255,0.1) !important; */
    color: #ffffff !important;
    border-radius: 20px !important;
}

/* Hero UI Overhaul */
.magnific-hero-card {
    background: rgba(24, 24, 27, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.magnific-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Featured Type Buttons */
.feature-type-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-type-card {
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    min-width: 200px;
}

.feature-type-card:hover {
    transform: translateY(-4px);
    background: #27272a;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Category grid ("The right photo for every moment") */
.section-title-magnific {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-subtitle-magnific {
    font-size: 1.1rem;
    color: #a1a1aa;
    margin-bottom: 40px;
}

.moment-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    display: block;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.moment-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 9, 11, 0.85) 0%, rgba(9, 9, 11, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.moment-card:hover img {
    transform: scale(1.06);
}

.moment-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.moment-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Consistency Collections Grid */
.collection-grid-card {
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.collection-grid-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.collection-main-img {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.collection-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-sub-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.collection-sub-img {
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #27272a;
}

.collection-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-meta {
    margin-top: 15px;
}

.collection-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.collection-count {
    font-size: 0.85rem;
    color: #71717a;
}

/* Collage style inspiration gallery */
.collage-card {
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-grid .collage-img:first-child {
    grid-row: span 2;
}

/* Promo Banner Styles */
.promo-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.promo-banner-content {
    position: relative;
    z-index: 2;
}

.promo-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.promo-banner-img-container {
    position: relative;
    height: 320px;
}

.promo-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

/* Accordion FAQ Styles */
.magnific-accordion .accordion-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    margin-bottom: 10px;
}

.magnific-accordion .accordion-button {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 20px 0;
    box-shadow: none !important;
    border: none !important;
}

.magnific-accordion .accordion-button::after {
    filter: invert(1);
}

.magnific-accordion .accordion-body {
    color: #a1a1aa !important;
    padding: 0 0 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Custom Footer (Unified across all pages) */
footer, .footer-top, .footer, .footer-bottom {
    background: #0d0d0d !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 80px;
    padding-bottom: 40px;
}

footer h5, .footer h5 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer ul li a, .footer ul li a {
    color: #a1a1aa !important;
    transition: color 0.2s;
}

footer ul li a:hover, .footer ul li a:hover {
    color: #ffffff !important;
}

footer .footer-bottom, .footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
    color: #71717a;
}

/* Centering page content inside a 1536px box while keeping backgrounds fluid/full-width */
.container, 
.custom--container {
    max-width: 1536px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==========================================================================
   MASTER FULL-HOMEPAGE RESPONSIVE SYSTEM (Desktop, Laptop, Tablet, Mobile)
   ========================================================================== */

/* 1. Large Desktops & HD Displays (1400px+) */
@media (min-width: 1400px) {
    .hero__container {
        min-height: 460px !important;
        padding: 80px 50px 70px !important;
    }
}

/* 2. Laptops & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .hero__container {
        padding: 50px 30px !important;
        min-height: 380px !important;
    }
    .hero__content-title {
        font-size: 2.2rem !important;
    }
    .promo-banner-title {
        font-size: 2rem !important;
    }
    .collection-main-img {
        height: 180px !important;
    }
}

/* 3. Tablets (768px - 991px) */
@media (max-width: 991px) {
    .hero__container {
        padding: 40px 24px !important;
        min-height: 340px !important;
        border-radius: 16px !important;
    }
    .hero__content-title {
        font-size: 1.8rem !important;
    }
    .b3-search-pill {
        max-width: 100% !important;
    }
    .cat-nav-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.1rem !important;
    }
    .cat-prev-btn { left: -10px !important; }
    .cat-next-btn { right: -10px !important; }
    
    .moment-card {
        height: 160px !important;
    }
    .collection-main-img {
        height: 160px !important;
    }
    .collage-grid {
        grid-template-columns: 1fr 1fr !important;
        height: 180px !important;
    }
    .join-content-wrapper {
        flex-direction: column !important;
        padding: 35px 25px !important;
        text-align: center !important;
    }
    .join-content {
        max-width: 100% !important;
        padding-right: 0 !important;
        margin-bottom: 24px !important;
    }
    .join-thumb {
        width: 100% !important;
        max-width: 280px !important;
        height: 220px !important;
        margin: 0 auto !important;
    }
    .promo-banner {
        padding: 30px !important;
        text-align: center !important;
    }
    .promo-banner-img-container {
        height: 220px !important;
        margin-top: 20px !important;
    }
    .faq-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

/* 4. Mobile Devices (< 768px) */
@media (max-width: 767px) {
    body.home .container,
    body.home .custom--container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .hero__container {
        padding: 32px 16px !important;
        min-height: 290px !important;
        border-radius: 14px !important;
    }
    .hero__content-title {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
    }
    .b3-sub-text {
        font-size: 0.92rem !important;
    }
    .b3-search-pill {
        padding: 6px 12px !important;
    }
    .b3-pill-input {
        font-size: 0.88rem !important;
    }
    .section-title-magnific {
        font-size: 1.35rem !important;
    }
    .section-subtitle-magnific {
        font-size: 0.88rem !important;
    }
    .moment-card {
        height: 145px !important;
        border-radius: 12px !important;
    }
    .moment-card-title {
        font-size: 0.95rem !important;
    }
    .cat-nav-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
    }
    .cat-prev-btn { left: -6px !important; }
    .cat-next-btn { right: -6px !important; }
    
    .collection-grid-card {
        border-radius: 12px !important;
    }
    .collection-main-img {
        height: 150px !important;
    }
    .promo-banner-title {
        font-size: 1.45rem !important;
    }
    .magnific-accordion .accordion-button {
        font-size: 1rem !important;
        padding: 14px 0 !important;
    }
    .magnific-accordion .accordion-body {
        font-size: 0.92rem !important;
    }
    .footer {
        padding-top: 36px !important;
    }
}

/* 5. Small Mobile Viewports (< 576px) */
@media (max-width: 575px) {
    .moment-card {
        height: 135px !important;
    }
    .cat-nav-btn {
        display: none !important;
    }
    .join-thumb {
        height: 180px !important;
        max-width: 240px !important;
    }
}

/* ==========================================================================
   OFFICIAL MAGNIFIC DESIGN SYSTEM TOKENS & UNIFIED THEMING
   ========================================================================== */
:root, .dark, [data-theme=dark], body {
    --color-surface-0: #101010;
    --color-surface-1: #1a1a1a;
    --color-surface-2: #2b2b2b;
    --color-surface-3: #353535;
    --color-surface-4: #424242;
    --color-surface-modal: #141414;
    --color-surface-accent-0: #4f69f2;
    --color-surface-accent-1: #4f69f21a;
    --color-surface-border-solid-0: #101010;
    --color-surface-border-solid-1: #1a1a1a;
    --color-surface-border-solid-2: #2b2b2b;
    --color-surface-border-solid-3: #353535;
    --color-surface-border-solid-4: #424242;
    --color-surface-border-solid-10: #f5f5f5;
    --color-surface-border-alpha-0: #ffffff0d;
    --color-surface-border-alpha-1: #ffffff1a;
    --color-surface-border-alpha-2: #ffffff33;
    --color-surface-border-accent-solid-0: #4f69f2;
    --color-surface-border-accent-alpha-0: #ffffff4d;
    --color-surface-foreground-0: #f5f5f5;
    --color-surface-foreground-1: #e3e3e3;
    --color-surface-foreground-2: #c5c5c5;
    --color-surface-foreground-3: #aaaaaa;
    --color-surface-foreground-4: #737373;
    --color-surface-foreground-accent-0: #4f69f2;
    --color-primary-0: #4f69f2;
    --color-primary-1: #344ce7;
    --color-primary-2: #2236d2;
    --color-primary-foreground-0: #fafafa;
    --color-secondary-0: #f5f5f5;
    --color-secondary-1: #e3e3e3;
    --color-secondary-2: #dbdbdb;
    --color-secondary-foreground-0: #1a1a1a;
    --color-outline-0: transparent;
    --color-outline-1: #ffffff1a;
    --color-outline-2: #ffffff1a;
    --color-outline-foreground-0: #f5f5f5;
    --color-outline-border-0: #ffffff33;
    --color-outline-border-1: #ffffff4d;
    --color-outline-border-2: #ffffff80;
    --color-outline-border-alpha-0: #ffffff33;
    --color-outline-border-alpha-1: #ffffff4d;
    --color-outline-border-alpha-2: #ffffff80;
    --color-default-0: #ffffff0d;
    --color-default-1: #ffffff1a;
    --color-default-2: #ffffff26;
    --color-default-foreground-0: #f5f5f5;
    --color-ghost-0: transparent;
    --color-ghost-1: #ffffff1a;
    --color-ghost-2: #ffffff26;
    --color-ghost-foreground-0: #f5f5f5;
    --color-premium-0: #f4980a;
    --color-premium-1: #ea7e11;
    --color-premium-2: #de6815;
    --color-premium-foreground-0: #1a1a1a;
    --color-blurred-0: #42424240;
    --color-blurred-1: #42424259;
    --color-blurred-2: #42424266;
    --color-blurred-foreground-0: #f5f5f5;
    --color-emphasis-0: #ff58ae;
    --color-emphasis-1: #ff389f;
    --color-emphasis-2: #ff1a90;
    --color-emphasis-foreground-0: #101010;
    --color-destructive-0: #f66950;
    --color-destructive-1: #da2a0b;
    --color-destructive-foreground-0: #fafafa;
    --color-destructive-foreground-1: #f9c7be;
    --color-form-0: #ffffff0d;
    --color-form-border-0: #ffffff26;
    --color-form-border-active: #90abfa;
    --color-form-border-error: #f66950;
    --color-form-border-success: #60dbb0;
    --color-form-border-warning: #edbd44;
    --color-form-border-solid-active: #90abfa;
    --color-form-border-solid-error: #f66950;
    --color-form-border-solid-success: #60dbb0;
    --color-form-border-solid-warning: #edbd44;
    --color-overlay-dialog: #101010cc;
    --color-overlay-thumbnail: #00000033;
    --color-panel-0: #101010;
    --color-panel-2: #161616;
    --color-panel-4: #1a1a1a;
    --color-panel-6: #1f1f1f;
}

/* Base Body Application (Without !important to prevent masking background images) */
body, html {
    background-color: var(--color-surface-0);
    color: var(--color-surface-foreground-0);
}

/* Media & Background Image Protection */
img, video, picture, canvas, svg,
.bg-img,
.hero__container,
.banner-two-section,
.collection-main-img,
.collection-sub-img,
.moment-card-img,
.author-profile-cover,
.cta-section,
.join-thumb,
main, .for-blur, .hero-section, .b3-section, .hero-bg, .hero-wrapper, .image-card-wrap, .thumb-wrap {
    background-color: transparent !important;
}

/* Container Standard Width */
.container, 
.custom--container {
    max-width: 1536px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Footer Application */
footer, .footer-section, .footer, .footer-top, .footer-bottom {
    background: var(--color-panel-0) !important; /* #101010 */
    border-top: 1px solid var(--color-surface-border-alpha-1) !important; /* #ffffff1a */
}

footer h5, .footer h5 {
    color: var(--color-surface-foreground-0) !important; /* #f5f5f5 */
}

footer ul li a, .footer ul li a {
    color: var(--color-surface-foreground-3) !important; /* #aaaaaa */
}

footer ul li a:hover, .footer ul li a:hover {
    color: var(--color-surface-foreground-0) !important;
}

/* Cards & Sub-Containers Application */
.card,
.custom--card,
.search-card,
.filter-card,
.responsive-filter-card,
.collection-grid-card,
.collage-card,
.author-profile-card,
.image-detail-card,
.asset-card,
.policy-card,
.contact-card,
.cmd-dialog {
    background-color: var(--color-surface-1) !important; /* #1a1a1a */
    border: 1px solid var(--color-surface-border-alpha-1) !important; /* #ffffff1a */
    color: var(--color-surface-foreground-0) !important; /* #f5f5f5 */
}

/* Headings & Text Colors Application */
h1, h2, h3, h4, h5, h6,
.title, .card-title, .section-title, .page-title {
    color: var(--color-surface-foreground-0) !important; /* #f5f5f5 */
}

p, span, label, .text-muted, .text-secondary {
    color: var(--color-surface-foreground-3) !important; /* #aaaaaa */
}

/* Form Inputs & Selects Application */
input.form-control,
textarea.form-control,
select.form-control,
select.form-select,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background-color: var(--color-form-0) !important; /* #ffffff0d */
    border: 1px solid var(--color-form-border-0) !important; /* #ffffff26 */
    color: var(--color-surface-foreground-0) !important;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
select.form-select:focus {
    background-color: var(--color-default-1) !important; /* #ffffff1a */
    border-color: var(--color-form-border-active) !important; /* #90abfa */
    color: var(--color-surface-foreground-0) !important;
}

.modal-content,
.dropdown-menu,
.primary-menu__sub {
    background-color: var(--color-surface-modal) !important; /* #141414 */
    border: 1px solid var(--color-surface-border-alpha-1) !important; /* #ffffff1a */
    color: var(--color-surface-foreground-0) !important;
}

/* Tables Application */
.table, table {
    color: var(--color-surface-foreground-0) !important;
    border-color: var(--color-surface-border-alpha-1) !important;
}

.table th, .table td {
    background-color: transparent !important;
    color: var(--color-surface-foreground-0) !important;
    border-bottom: 1px solid var(--color-surface-border-alpha-1) !important;
}

.table tbody tr:hover {
    background-color: var(--color-default-0) !important;
}

/* ==========================================================================
   GALLERY IMAGE & HOVER VIDEO PREVIEW SYSTEM
   ========================================================================== */
.gallery li, 
.gallery__item, 
.item {
    background-color: transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

.item-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.gallery__img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Base style for gradient overlay */
.item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Show gradient on hover */
.item:hover::after {
    opacity: 1;
}

/* User Avatar & Author Info Styling Protection */
.gallery__user-img,
img.gallery__user-img {
    position: static !important;
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: inline-block !important;
    z-index: 5 !important;
}

.gallery__user {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.gallery__user-name {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: inline-block !important;
    z-index: 5 !important;
}

.gallery__title {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: block !important;
    z-index: 5 !important;
}

/* Remove any full-card black pseudoelement curtains */
.gallery li::after,
.gallery__item::after,
.item::after {
    display: none !important;
    content: none !important;
}

/* Hover Title Dark Gradient Overlay (Placed directly on .gallery__content) */
.gallery__content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0) 100%) !important;
    z-index: 3 !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 30px 12px 10px !important;
    box-sizing: border-box !important;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* ==========================================================================
   MAGNIFIC STYLE COLLECTIONS PAGE (PHASE 12)
   ========================================================================== */

/* Hero Section */
.mgn-hero-banner {
    position: relative;
    border-radius: 20px;
    padding: 80px 20px;
    background: #111; /* Fallback */
    overflow: hidden;
    margin-bottom: 30px;
}
.mgn-hero-banner__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(200, 210, 240, 0.9) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(230, 200, 220, 0.8) 0%, transparent 50%),
                linear-gradient(135deg, #a5b4fc 0%, #fbcfe8 100%);
    filter: blur(20px);
    z-index: 0;
    opacity: 0.8;
}
.mgn-hero-banner__content {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.mgn-hero-banner__breadcrumb {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
    text-transform: lowercase;
}
.mgn-hero-banner__breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.mgn-hero-banner__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.mgn-hero-banner__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}
.mgn-hero-banner__search {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.mgn-hero-banner__search .mgn-search-icon-left {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
}
.mgn-hero-banner__search input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #fff;
    outline: none !important;
    box-shadow: none !important;
}
.mgn-hero-banner__search input::placeholder {
    color: rgba(255,255,255,0.5);
}
.mgn-search-icon-right {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 4px;
}
.mgn-search-icon-right i {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}
.mgn-search-icon-right button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.mgn-search-icon-right button:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Magnific Style Collections */
.mgn-collection {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.mgn-collection__collage {
    display: grid;
    gap: 2px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-form-0);
    aspect-ratio: 1 / 1.15;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mgn-collection__collage:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.mgn-collection__collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.mgn-collection__collage:hover img {
    transform: scale(1.05);
}

/* Layouts based on image count */
.mgn-count-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.mgn-count-4 .mgn-img-quarter-1 { grid-column: 1 / 2; grid-row: 1 / 2; overflow: hidden; }
.mgn-count-4 .mgn-img-quarter-2 { grid-column: 2 / 3; grid-row: 1 / 2; overflow: hidden; }
.mgn-count-4 .mgn-img-quarter-3 { grid-column: 1 / 2; grid-row: 2 / 3; overflow: hidden; }
.mgn-count-4 .mgn-img-quarter-4 { grid-column: 2 / 3; grid-row: 2 / 3; overflow: hidden; }

.mgn-count-3 {
    grid-template-columns: 1fr 1.15fr;
    grid-template-rows: 1fr 1fr;
}
.mgn-count-3 .mgn-img-small-1 { grid-column: 1 / 2; grid-row: 1 / 2; overflow: hidden; }
.mgn-count-3 .mgn-img-small-2 { grid-column: 1 / 2; grid-row: 2 / 3; overflow: hidden; }
.mgn-count-3 .mgn-img-large { grid-column: 2 / 3; grid-row: 1 / 3; overflow: hidden; }

.mgn-count-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}
.mgn-count-2 .mgn-img-half-1 { grid-column: 1 / 2; grid-row: 1 / 2; overflow: hidden; }
.mgn-count-2 .mgn-img-half-2 { grid-column: 2 / 3; grid-row: 1 / 2; overflow: hidden; }

.mgn-count-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.mgn-count-1 .mgn-img-full { overflow: hidden; }

/* Footer */
.mgn-collection__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 10px;
}
.mgn-collection__info {
    flex: 1;
    padding-right: 12px;
}
.mgn-collection__title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--color-surface-foreground-0) !important;
    margin: 0 0 3px !important;
    line-height: 1.2;
}
.mgn-collection__subtitle {
    font-size: 0.82rem !important;
    color: var(--color-surface-foreground-3) !important;
    margin: 0 !important;
}

/* Kebab Menu */
.mgn-collection__action {
    position: relative;
    margin-top: -4px;
}
.mgn-kebab-btn {
    background: transparent;
    border: none;
    color: var(--color-surface-foreground-3);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
}
.mgn-kebab-btn:hover {
    background: var(--color-surface-2);
    color: var(--color-surface-foreground-0);
}
.mgn-dropdown {
    border-radius: 8px;
    border: 1px solid var(--color-form-border-0);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 6px;
    min-width: 170px;
    background: var(--color-form-0);
}
.mgn-dropdown-item {
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-surface-foreground-1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}
.mgn-dropdown-item i {
    font-size: 1.15rem;
    color: var(--color-surface-foreground-2);
}
.mgn-dropdown-item:hover {
    background: var(--color-surface-1);
    color: var(--color-surface-foreground-0);
}
.mgn-dropdown-item.collected {
    color: #10b981;
}
.mgn-dropdown-item.collected i {
    color: #10b981;
}

.collection__title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--color-surface-foreground-0) !important;
    margin-bottom: 4px;
}

.collection__subtitle {
    font-size: 13px !important;
    color: var(--color-surface-foreground-3) !important;
}

.btn--tag {
    background: var(--color-form-0) !important;
    border: 1px solid var(--color-form-border-0) !important;
    border-radius: 20px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    color: var(--color-surface-foreground-0) !important;
    transition: all 0.2s ease;
}
.btn--tag:hover {
    background: var(--color-default-1) !important;
    border-color: var(--color-form-border-active) !important;
}



