.video__tags{
    color: #3BCCD1;
}
.video__category--current{
    color: #fff;
    text-decoration: none;
}
.video__category:hover{
    color: #3BCCD1;
}
.video__catWrapper{
    gap: 12px;
}
.video__categories {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
}
.channels__element img{
    aspect-ratio: 16/9;
}
.channels__container {
    grid-template-columns: repeat(4, minmax(calc(16.6% - 15px), 1fr));
}
.featuredContainer{
    background: transparent;
}
.videos__element:nth-child(2n) .videos__wrapper {
    background: #232220;
}
.video__desc{
    font-size: 16px;
    line-height: 23px;
}
.videos__thumbnail img {
    width: 100%;
    aspect-ratio: 16/9;
}

.contentRemoval {
    margin: 40px auto;
    padding: 40px;
    background-color: #111;
    border-radius: 10px;
}

.contentRemoval h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.contentRemoval h4 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.contentRemoval p,
.contentRemoval ul {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}

.contentRemoval a {
    color: #DD705F;
    text-decoration: none;
}

.contentRemoval a:hover {
    text-decoration: underline;
}

.contentRemoval label {
    font-weight: bold;
    display: block;
    margin-top: 20px;
    color: #f5f5f5;
    margin-bottom: 10px;
}

.contentRemoval input[type="text"],
.contentRemoval input[type="email"],
.contentRemoval textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin-top: 5px;
    border: none;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-size: 14px;
}

.contentRemoval textarea {
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif !important;
}

.contentRemoval input[type="checkbox"] {
    margin-right: 8px;
}

.contentRemoval textarea {
    resize: vertical;
    height: 100px;
}

.contentRemoval .url-group input {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.contentRemoval button[type="submit"] {
    margin-top: 30px;
    background-color: #DD705F;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    max-width: 100px;
}

.contentRemoval button:hover {
    background-color: #DD705F;
}

.contentRemovalForm{
    display: flex;
    flex-direction: column;
}
.footer-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 22px;
}
.footer-row a{
    position: relative;
    padding: 0 10px;
}
.footer-row a:after{
    display: inline-block;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 1px;
}
.footer-row a:last-child:after{
    display: none;
}
.footer-row a:after:hover{
    opacity: 1 !important;
}
.textpage-col{
    color: #fff;
    font-size: 14px;
}
.textpage-col a{
    color: #DD705F;
}


/* Cart */

.header__cart {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: 0.4s;
}

.header__cart a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header__cart i {
    font-size: 20px;
    color: white;
    background: transparent;
    border: none;
    outline: none;
    transition: 0.4s;
}

.header__cart-count {
    position: absolute;
    bottom: 15px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    display: none;
}



.cart-list {
    width: 100%;
}

.cart-wrapper {
    background-color: #111;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    padding: 15px;
    border-bottom: 1px solid #333;
    gap: 15px;
}

.cart-item__left {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 15px;
}

.cart-item__image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item__info {
    display: flex;
    flex-direction: column;
    color: white;
}

.cart-item__title {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: bold;
    color: white;
}

.cart-item__desc {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.cart-item__right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    min-width: 80px;
}

.cart-item__price {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.cart-item__remove {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.cart-item__remove:hover {
    color: #ff1a1a;
}

@media (max-width: 600px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item__right {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
    }
}

.cart__container {
    width: 100%;
    max-width: 100%;
}

.purchase_button{
    display: flex;
    margin-top: 20px;
    justify-content: flex-end;
}

.cart-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 18px;
    margin: 20px 0 10px;
    color: white;
    gap: 8px;
}

.cart-total strong {
    font-size: 20px;
    color: #fff;
}

/* Orders */

.orders__container {
    width: 100%;
    max-width: 100%;
}

.order-list {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.order-item {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: white;
}

.order-header,
.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.order-id {
    font-weight: bold;
    font-size: 16px;
    color: #dd705f;
}

.order-date {
    font-size: 14px;
    color: #f0f0f0;
}

.order-movies ul {
    padding-left: 20px;
    margin: 0 0 10px 0;
}

.order-movies li {
    margin-bottom: 4px;
    font-size: 15px;
    color: #eee;
}

.order-total {
    font-weight: bold;
    font-size: 16px;
}

.order-status {
    font-size: 14px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-status.paid {
    color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.1);
}

.order-status.failed {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.order-status.pending {
    color: #f39c12;
    background-color: rgba(243, 156, 18, 0.1);
}

.order-movies a {
    color: #eee;
    text-decoration: none;
    transition: color 0.2s;
}

.order-movies a:hover {
    color: #dd6b5a;
}




.subscription-form {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #111;
    border-radius: 10px;
}

.subscription-form h1 {
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.subscription-form .plans-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.subscription-form .plan {
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    position: relative;
}

.subscription-form .plan:hover,
.subscription-form .plan.selected {
    border-color: #DD705F;
    background-color: #1a1a1a;
}

.subscription-form input[type="radio"] {
    display: none;
}

.subscription-form .plan-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    color: #DD705F;
    text-align: center;
}

.subscription-form .plan-subtitle {
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.subscription-form .plan-subtitle span{
    font-weight: bold;
    font-size: 24px;
}

.subscription-form p {
    color: #fff;
    margin: 5px 0;
    margin-top: 25px;
}

.subscription-form a {
    color: #DD705F;
    text-decoration: underline;
}

.subscription-form .button-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.subscription-form button {
    background-color: #DD705F;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    width: 250px;
    transition: background-color 0.3s;
}

.subscription-form button:hover {
    background-color: #c85c4d;
}

@media (max-width: 600px) {
    .subscription-form {
        margin: 20px;
        padding: 15px;
    }
    .subscription-form .plans-wrapper {
        flex-direction: column;
    }
    .subscription-form button {
        width: 100%;
    }
}

.extras__container{
    width: 100%;
}

.extras__container .videos__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(calc(33.3% - 15px), 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 30px;
}

/* GALLERY */

.gallery-block {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 16px;
  margin: 0 auto;
}

.gallery-block > a[data-lightbox="gallery"] {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 32px auto;
  text-align: center;
}

.gallery-block > a[data-lightbox="gallery"] img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#galleryImages {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px;
  justify-content: center;
  padding: 0 !important;
  margin: 0 auto !important;
}

#galleryImages .gallery-item-col {
  flex: 0 0 calc(16.66% - 16px) !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: transform 0.2s ease !important;
}

#galleryImages .gallery-item-col:hover {
  transform: scale(1.02);
}

#galleryImages .gallery-item-col img {
  width: 100% !important;
  height: auto !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  display: block;
}

@media (max-width: 1200px) {
  #galleryImages .gallery-item-col {
    flex: 0 0 calc(20% - 16px) !important;
  }
}

@media (max-width: 992px) {
  #galleryImages .gallery-item-col {
    flex: 0 0 calc(25% - 16px) !important;
  }
}

@media (max-width: 768px) {
  #galleryImages .gallery-item-col {
    flex: 0 0 calc(33.33% - 16px) !important;
  }
}

@media (max-width: 576px) {
  #galleryImages .gallery-item-col {
    flex: 0 0 calc(50% - 16px) !important;
  }
}

.gallery-slider {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

.gallery-slider .gallery-item-col {
  flex: 0 0 calc(16.66% - 16px);
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.gallery-slider .gallery-item-col:hover {
  transform: scale(1.02);
}

.gallery-slider .gallery-item-col img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 1200px) {
  .gallery-slider .gallery-item-col {
    flex: 0 0 calc(20% - 16px);
  }
}

@media (max-width: 992px) {
  .gallery-slider .gallery-item-col {
    flex: 0 0 calc(25% - 16px);
  }
}

@media (max-width: 768px) {
  .gallery-slider .gallery-item-col {
    flex: 0 0 calc(33.33% - 16px);
  }
}

@media (max-width: 576px) {
  .gallery-slider .gallery-item-col {
    flex: 0 0 calc(50% - 16px);
  }
}

/* EOF GALLERY */