@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

body {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    overflow-x:hidden;
}

.categorytitle{
    font-family: "EB Garamond", serif;
    padding: 20px;
    font-size:50px;
}

@media only screen and (max-width: 767px) {
    .categorytitle{
        font-size:30px;
    }
}
textarea{
    resize: none;
}



a {
  text-decoration: none;
}

.wishlisticon,
.wishlistremoveicon {
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .categorytitle {
        font-size: 30px;
    }

    .product_title_show {
        font-size: 20px;
    }
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid #c9a55c;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}


.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Password Page */

.latest_container {
    padding: 20px;
}

.latest_product {
    margin-bottom: 10px;
}

/* Orders Page */

@media (max-width: 767px) {
    #responsive-border {
        border-right: none !important;
        border-bottom: 1px solid lightgrey !important;
    }
}

@media (max-width: 575.98px) {
    .order-item {
        flex-direction: column;
    } 

    .order-item img {
        width: 100%;
    }

    .text-right-xs {
        text-align: left !important;
    }
}

.order_name_row {
    border-bottom: 1px solid lightgrey;
}

.order_right_row {
    border-bottom: 1px solid lightgrey;
    margin-bottom: 10px;
}

.order_left_row {
    border-right: 1px solid lightgrey;
}

.order_a_tag {
    text-decoration: none;
}

.orders_row {
    padding: 10px;
}

/* Address Design */
.daddress {
    padding: 10px;
    cursor: pointer;
}

.oaddress {
    margin-bottom: 20px;
    padding: 10px;
    cursor: pointer;
}

.order_summery {
    margin-bottom: 10px
}

.order_table_row {
    border-top: 1px solid #fff;
    margin-top: 10px;
    padding: 20px;
    font-size: 18px;
}

.address_discount_row {
    float: right;
    color: MediumSeaGreen;
}

.address_total_row {
    float: right;
    color: #000;
    font-weight: bold;
}

.modal-title {
    font-family: "Merriweather", serif;
}

.place_order_button {
    float: right;
    padding: 10px;
    color: white;
}


/* Cart Design */
.cart_product_name {
    font-weight: 600;
}

.cart_out_of_stock,
.search_results_name {
    color: red;
}

.cart_total_price {
    text-decoration: line-through;
    color: #909090;
}

.Continue_shopping {
    text-decoration: none;
}

.cartdesignrow {
    margin-bottom: 20px;
}

.continuebuy {
  width: 100%;
}

.address_account_name {
    border-bottom: 1px solid lightgrey;
}

.selectedaddess {
    border: 2px solid lightgreen;
}

.cart-item {
    margin: 5px;
  padding: 10px;
  border: 1px solid gray;
  border-radius: 5px;
}

.empty-cart {
  width: 50vw;
  margin: 0 auto;
  text-align: center;
  font-family: 'Maison Neue';
  font-weight: 300;

  svg {
    max-width: 60%;
    padding: 5rem 3rem;

    /* Animation for specific elements */
    #oval,
    #plus,
    #diamond,
    #bubble-rounded {
      animation: plopp 4s ease-out infinite;
    }

  }
  #oval:nth-child(1),
  #plus:nth-child(2),
  #diamond:nth-child(3),
  #bubble-rounded:nth-child(4) {
    animation-delay: calc(-240ms * var(--i));
  }


#bg-line {
    &:nth-child(2) {
        fill-opacity: .3;
    }

    &:nth-child(3) {
      fill-opacity: .4;
    }
}

.empty-cart-title {
    font-size: 2rem;
    line-height: 2rem;
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: 600;
}

.empty-cart-description {
        color: #666;
        font-size: 18px;
        line-height: 24px;
        max-width: 80%;
        margin: 1.25rem auto 0 auto;
    }
}

@keyframes plopp {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(0, -10px);
        opacity: 0;
    }
}

.wishtlist_container {
    text-align: center;
    padding: 30px;
}

.empty_wishlist {
    font-family: "Merriweather", serif;
}

.wishlist_products {
    margin-bottom: 10px;
}

.bag-icon {
    position: relative;
    width: 100px;
    height: 120px;
    margin-bottom: 20px;
}

.bag {
    width: 100px;
    height: 70px;
    background-color: #f5a623;
    /* Bag color */
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: 10px;
    left: 0;
    border: 2px solid #333;
    /* Bag border */
}

.bag::after {
    content: '';
    width: 30px;
    height: 10px;
    background-color: #333;
    /* Bag handle color */
    border-radius: 5px;
    position: absolute;
    top: -5px;
    left: 35px;
}

.sad-face {
  position: absolute;
  bottom: 15px;
  left: 25px;
  width: 50px;
  height: 30px;
}

.sad-face::before {
  content: '😞';
  /* Sad face emoji */
  font-size: 30px;
}

.message {
  font-size: 20px;
  color: #f5a623;
  /* Text color */
  font-weight: bold;
}



/* View Product Page */

.filled-star {
  color: gold;
  /* Color for filled stars */
}

.half-star {
  color: gold;
  /* Color for half stars */
  position: relative;
  /* Position relative for styling */
}

.empty-star {
  color: lightgray;
  /* Color for empty stars */
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.pre_tag_view_page {
  overflow-x: hidden;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.productnextimage {
  cursor: pointer;
}

.product_title_show {
  font-family: "Merriweather", serif;
  color: #74642F;
  font-weight: 800;
  font-size: 30px;
}

.product_description_show {
  overflow-x: hidden;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  font-family: "Prata", Georgia, serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.aboutproduct {
  color: #000;
  font-family: "Prata", Georgia, serif;
  font-weight: bold;
  font-style: normal;
}
  
/* Main text uses this styling and color */
.details-snippet1 .theme-text {
  font-weight: bold;
}

.details-snippet1 .mini-preview img {
  border: 1px solid #585656;
  border: 1px solid purple;
  margin-bottom: 8px;
}

.details-snippet1 .title {
  font-weight: bold;
  font-size: 2rem;
}

.details-snippet1 .price {
  font-weight: bold;
  font-size: 1.8rem;
}

.details-snippet1 .original-price {
  font-weight: normal;
  font-size: 20px;
}

.select-colors .color {
  display: inline-block;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 5px;
  background-color: black;
}

.select-colors .color.red {
  background-color: red;
}

.addBtn {
  background-color: white;
  color: white;
  text-transform: uppercase;
}

.addBtn:hover {
  background-color: #500150;
  color: white;
}


/* Common Style */


.wishlist-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty-wishlist {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 15px; 
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
}
.empty-wishlist-icon {
    font-size: 5rem;
    color: #dee2e6;
    margin-bottom: 20px;
}
.cart-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
}
.empty-cart-icon {
    font-size: 5rem;
    color: #dee2e6;
    margin-bottom: 20px;
}
.btn-shop-now {
    background-color: #2c3e50;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.btn-shop-now:hover {
    background-color: #34495e;
    color: white;
    transform: translateY(-2px);
}

.orders-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}
.empty-orders-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 20px;
}
.btn-shop {
    background-color: #2c3e50;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.btn-shop:hover {
    background-color: #34495e;
    color: white;
}
@media (max-width: 768px) {
    .orders-card {
        padding: 20px;
    }
    .empty-orders-icon {
        font-size: 3rem;
    }
    .btn-shop {
        width: 100%;
    }
    .order_action_div{
        width:70px;
    }
    .dropdownMenuButton{
        margin-top:-20px;
    }
}

.review-section {
    background: #f8f9fa;
    padding: 80px 0;
}


.rating-stars {
    color: #ffc107;
    font-size: 24px;
    cursor: pointer;
}

.rating-stars i {
    margin-right: 5px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #ffc107;
    margin: 10px 0;
}



.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}
.write-review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rating-input {
    display: none;
}

.rating-label {
    color: #ddd;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-label:hover,
.rating-label:hover ~ .rating-label {
    color: #ffc107;
}

.rating-input:checked ~ .rating-label {
    color: #ffc107;
}

.image-upload-preview {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.preview-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    border: 1px solid #dee2e6;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.no-reviews {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.no-reviews i {
    font-size:40px;
    color: #dee2e6;
    margin-bottom: 20px; 
}

.no-reviews h3 {
    color: #6c757d;
    margin-bottom: 15px;
}

.no-reviews .btn-primary {
    padding: 10px 25px;
    border-radius: 25px;
    margin-top: 15px;
}

.edit-review-modal .rating-stars {
    margin-bottom: 20px;
}

.edit-review-modal .image-preview {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.edit-review-modal .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-size: 12px;
}

@media (max-width: 768px) {
    .product-info {
        text-align: center;
    }
    .product-image {
        margin-bottom: 20px;
    }
}
.prism-category {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.prism-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.prism-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.2) 0%, 
        rgba(0,0,0,0.8) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.prism-category:hover .prism-overlay {
    transform: scale(2);
}
.category-title {
    font-family: 'Baskervville', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
}

.category-link {
    display: inline-block;
    padding: 8px 25px;
    margin-top: 15px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: white;
    color: #2c3e50;
}
.category-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[class*="-category"]:hover .category-content {
    opacity: 1;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.2rem;
    }
}
.pre_tag_view_page {
    overflow-x: hidden;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    font-family: "Prata", Georgia, serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.productmainimage {
    width: 100%;
    height: auto;
}
.main_laptop_size{
    display:block;
}
.main_mobile_size{
    display:none;
}
@media only screen and (max-width: 992px) {
    .main_laptop_size{
        display:none;
    }
    .main_mobile_size{
        display:block;
    }
}
