:root {
    --color-primary: #abc7df;
    --color-primary-100: #e3ecf3;
    --color-secondary: #4c6d8a;
    --color-offwhite: #f8f4f0;
    --color-offwhite-100: #fbfbf7;
    --color-pink: #fbcac3;
    --color-pink-hover: #ffaa9d;
}

body {
    max-width: 1440px;
    margin-inline: auto;
    font-family: "Poppins", serif;
}

html {
    scroll-behavior: smooth;
}

button {
    cursor: pointer;
}

.font-Playfair {
    font-family: "Playfair Display", serif;
}

/* Landing_testimonials-slider */
.circle-pos-1 {
    top: -8%;
    left: 16%;
    width: 112px;
    height: 112px;
}

.circle-pos-2 {
    top: -8%;
    right: 16%;
    width: 112px;
    height: 112px;
}

.circle-pos-3 {
    bottom: 1%;
    left: 5%;
    width: 170px;
    height: 170px;
}

.circle-pos-4 {
    bottom: 1%;
    right: 5%;
    width: 170px;
    height: 170px;
}

.circle-pos-5 {
    top: 16%;
    left: 0%;
    width: 162px;
    height: 162px;
}

.circle-pos-6 {
    top: 16%;
    right: 0%;
    width: 168px;
    height: 168px;
}

.circle-pos-7 {
    top: 43%;
    left: 15%;
    width: 102px;
    height: 102px;
}

.circle-pos-8 {
    top: 43%;
    right: 15%;
    width: 102px;
    height: 102px;
}

.circle-img {
    object-fit: cover;
    border-radius: 9999px;
    border: 2px solid white;
    box-shadow: 0 0 6px rgb(0 0 0 / 0.18);
}

.aspect-w-16 {
    aspect-ratio: 16 / 9;
}

.slider-container {
    overflow: hidden;
    width: 690px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slider-slide {
    flex-shrink: 0;
    width: 406px;
    margin-right: 20px;
}

.progress-bar {
    transition: width 0.3s ease;
}

.nav-button {
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.about-us-slider .slick-slide {
    padding: 0 6px;
}

.auth-tabs .active::after {
    content: "";
    position: absolute;
    border-radius: 12px;
    bottom: -12px;
    width: 100%;
    height: 3px;
    display: flex;
    background-color: black;
}

/* designer page slick slider      */
.slick-carousel .slick-slide {
    padding: 0 10px;
}

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

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

.floating-decoration {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.slide-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-secondary) 0%,
        var(--color-secondary) var(--progress, 33%),
        #e5e7eb var(--progress, 33%),
        #e5e7eb 100%
    );
}

.content-section {
    display: flex;
    flex-direction: column;
}

.image-section {
    display: flex;
    align-items: center;
}

/* Another Grest Reason Section Css */
.another-section-carousel-track {
    display: flex;
    white-space: nowrap;
}

.another-section-carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.another-section-carousel-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desinger line details page CSs */
#designer-detials-page .carousel-container {
    overflow: hidden;
    position: relative;
}

#designer-detials-page .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

#designer-detials-page .carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

#designer-detials-page .thumb-scroll::-webkit-scrollbar {
    height: 8px;
}

#designer-detials-page .thumb-scroll::-webkit-scrollbar-track {
    background: transparent;
}

#designer-detials-page .thumb-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.4);
    border-radius: 10px;
}

#designer-detials-page .rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* #designer-detials-page .carousel-container {
    overflow: hidden;
} */

#designer-detials-page .carousel-track {
    display: flex;
    transition: transf/orm 0.5s ease-in-out;
}

#designer-detials-page .carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

#designer-detials-page .star-filled {
    color: #fbbf24;
}

#designer-detials-page .star-empty {
    color: #d1d5db;
}

#designer-detials-page .rating-bar {
    background: linear-gradient(
        to right,
        #fbbf24 var(--fill-percentage),
        #e5e7eb var(--fill-percentage)
    );
}

/* cart modal  */
.cart-modal {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.cart-modal.open {
    transform: translateX(0);
}

.overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.product-item {
    transition: all 0.3s ease;
}

.product-item.removing {
    opacity: 0;
    transform: translateX(100%);
}


/* Live Search */
.live-search-open #live-search-modal {
    display: block;
}

.live-search-open #live-search-modal-content {
    opacity: 1;
    transform: translateY(0);
}



/* producy detail  */
.variable-product-detail-page table {
    width: 100% !important;
}
.variable-product-detail-page table tbody select#color {
    padding: 12px;
    border: 1px solid black;
    border-radius: 8px;
    width: 100% !important;
}
.variable-product-detail-page table tbody tr > th {
    text-align: start !important;
}
.variable-product-detail-page table tbody .reset_variations {
    display: none !important;
}
.variable-product-detail-page .tinv-wishlist, .simple-product-detail-page .tinv-wishlist {
    display: none !important;
}
.variable-product-detail-page .single_variation_wrap {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    margin-top: 12px !important;
}
.variable-product-detail-page .single_variation_wrap .variations_button {
    width: 100%;
    gap: 10px;
    display: flex !important;
    align-items: center !important;
}
.variable-product-detail-page .single_variation_wrap .woocommerce-Price-amount {
    font-size: 20px;
    font-weight: 500;
}
.variable-product-detail-page .single_variation_wrap .variations_button .single_add_to_cart_button {
    padding: 12px;
    height: 50px;
    color: white;
    width: 100%;
    background-color: black;
    border-radius: 8px;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.variable-product-detail-page .single_variation_wrap .variations_button .single_add_to_cart_button:hover {
    cursor: pointer;
  background-color: #2c2c2c !important;
}

.variable-product-detail-page .single_variation_wrap .quantity input {
    width: 70px !important;
    height: 50px;
    display: flex !important;
    align-items: center !important;
    text-align: center;
    justify-content: center;
    border: 1px solid rgb(194, 194, 194);
    border-radius: 8px;
}

.simple-product-detail-page .cart {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}

.simple-product-detail-page .cart .quantity input {
    width: 70px !important;
    height: 50px;
    display: flex !important;
    align-items: center !important;
    text-align: center;
    justify-content: center;
    border: 1px solid rgb(194, 194, 194);
    border-radius: 8px;
}

.simple-product-detail-page .cart .single_add_to_cart_button {
  padding: 12px !important;
  height: 50px !important;
  color: white !important;
  width: 100% !important;
  background-color: black !important;
  border-radius: 8px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.simple-product-detail-page .cart .single_add_to_cart_button:hover {
    cursor: pointer;
  background-color: #2c2c2c !important;
}


.simple-product-detail-page .out-of-stock {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 50px !important;
  padding: 12px !important;
  background-color: black !important;
  color: white !important;
  border-radius: 8px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.simple-product-detail-page .out-of-stock:hover {
  cursor: not-allowed;
   background-color: #2c2c2c !important;
}



/* Product review section */
.custom-review-section {
  padding: 40px 20px;
  background-color: #fefefe;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
}

.custom-review-section .woocommerce-Reviews-title {
  font-size: 24px;
  color: #222;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.custom-review-section .commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-review-section .review .comment_container {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
}

.custom-review-section .review .avatar {
  border-radius: 50%;
}

.custom-review-section .review .comment-text {
  flex: 1;
}

.custom-review-section .review .star-rating span {
  color: #f5a623;
  font-weight: bold;
}

.custom-review-section .review .meta {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.custom-review-section .review .description {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

.custom-review-section .comment-reply-title {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.custom-review-section .comment-form-rating label {
  font-weight: 600;
  display: block;
}

.custom-review-section .comment-form-rating .stars span a {
  display: inline-block;
  font-size: 18px;
  color: #858585;
  margin-right: 5px;
  transition: color 0.3s;
  cursor: pointer;
}

.custom-review-section .comment-form-rating .stars span a:hover,
.custom-review-section .comment-form-rating .stars span a:focus {
  color: #ffb400;
}

.custom-review-section .comment-form-comment label {
  font-weight: 600;
  display: block;
  margin-top: 5px;
}

.custom-review-section textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  transition: border-color 0.3s;
}

.custom-review-section textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.custom-review-section .submit {
  width: 100%;
  cursor: pointer;
  font-size: 0.875rem;
  color: #000;
  background-color: #fbcac3;
  font-weight: 700;
  border-radius: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 6px;
  transition: background-color 0.3s ease;
}

.custom-review-section .submit:hover {
  background-color: #ffaa9d; 
}

.custom-review-section .required {
  color: red;
}

@media (max-width: 768px) {
  .custom-review-section .review-layout {
    flex-direction: column;
  }

  .custom-review-section .review-list, .review-form {
    flex: 1 1 100%;
  }
}


/* Wishlist Button */
.tinvwl_add_to_wishlist_button  {
    display: flex;
    align-items: center;
}


/* Wishlist Page */
.tinv-wishlist.tinv-wishlist-clear {
  padding: 2rem;
  background-color: #fff;
}

.tinv-wishlist.tinv-wishlist-clear .tinv-header h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #333;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list {
  width: 100%;
  border-collapse: collapse;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list th,
.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list td {
  text-align: left;
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list thead {
  background-color: #f9f9f9;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list th {
  font-weight: 600;
  color: #555;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list tbody tr:hover {
  background-color: #fdfdfd;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list .product-thumbnail img {
  max-width: 60px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list .product-thumbnail img:hover {
  transform: scale(1.05);
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list .product-name a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list .product-name a:hover {
  color: #b28b67;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list .product-price {
  color: #333;
  font-weight: 500;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-table-manage-list .product-price del {
  color: #999;
  margin-right: 5px;
}

.tinv-wishlist.tinv-wishlist-clear .product-stock .in-stock {
  color: #28a745;
}

.tinv-wishlist.tinv-wishlist-clear .product-stock .out-of-stock {
  color: #dc3545;
}

.tinv-wishlist.tinv-wishlist-clear .button,
.tinv-wishlist.tinv-wishlist-clear button {
  background-color: #b28b67;
  border: none;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tinv-wishlist.tinv-wishlist-clear .button:hover,
.tinv-wishlist.tinv-wishlist-clear button:hover {
  background-color: #9e7754;
}

.tinv-wishlist.tinv-wishlist-clear .product-remove button {
  background: none;
  border: none;
  color: #999;
  font-size: 1.2rem;
}

.tinv-wishlist.tinv-wishlist-clear .product-remove button:hover {
  color: #dc3545;
}

.tinv-wishlist.tinv-wishlist-clear tfoot {
  background-color: #f9f9f9;
}

.tinv-wishlist.tinv-wishlist-clear .tinvwl-to-left select,
.tinv-wishlist.tinv-wishlist-clear .tinvwl-to-left button,
.tinv-wishlist.tinv-wishlist-clear .tinvwl-to-right button {
  margin: 0.5rem 0.25rem;
}

.tinv-wishlist.tinv-wishlist-clear .social-buttons {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}

.tinv-wishlist.tinv-wishlist-clear .social-buttons span {
    margin-right: 10px;
}

.tinv-wishlist.tinv-wishlist-clear .social-buttons ul {
  display: flex;
  justify-content: end;
  list-style: none;
  padding: 0;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tinv-wishlist.tinv-wishlist-clear .social-buttons li a {
  font-size: 1.2rem;
  color: #888;
  transition: color 0.3s ease;
}

.tinv-wishlist.tinv-wishlist-clear .social-buttons li a:hover {
  color: #b28b67;
}


/* WC Cart Page */
.wc-block-cart {
    margin-top: 3em !important;
}

/* My account Page */
.woocommerce-MyAccount-navigation {
  width: 100%;
  max-width: 300px;
  background-color: #ffffff;
  padding: 1rem;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.75rem 1rem;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation a:focus {
  background-color: #f8f6f5;
  color: #b28b67;
}

.woocommerce-MyAccount-navigation .is-active a {
  border-bottom: 2px solid #b28b67;
  color: #606060;
  font-weight: 600;
}

.woocommerce-MyAccount-navigation a i {
  margin-right: 0.5rem;
  color: inherit;
}

@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    max-width: 100%;
  }
}
