*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
body{
    background-color: #FDEBD8;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}
@font-face {
    font-family: 'Acumic-Reg';
    src: url('fonts/AcuminProWide-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Acumic-Semi';
    src: url('fonts/AcuminProWide-Semibold.woff2') format('woff2');
}
@font-face {
    font-family: 'Span-Cds';
    src: url('fonts/Span-RegularCond.woff2') format('woff2');
}
body, .standard-size{
    font-size: 17px;
    line-height: 26px;
    font-family: "Acumic-Reg";
    font-weight: 400;
}
.link-size{
    font-size: 16px;
    line-height: 16px;
    font-family: "Acumic-Semi";
    font-weight: 700;
}

#info-bar{
    background-color: #23120A;
    color: #ECFF3E;
}
.info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }
  
  .info-bar__column {
    display: flex;
    align-items: center;
  }
  
  .info-bar__left {
    width: 30%;
    justify-content: flex-start;
  }
  
  .info-bar__center {
    flex-grow: 1;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
  }
  
  .info-bar__right {
    width: 30%;
    justify-content: flex-end;
  }
  .social-icons{
    margin-right: 10px;
  }
  .social-icons i {
    margin-left: 10px;
  }
  
  .text-slider {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .text-slider .slide {
    flex-shrink: 0;
    width: 100%;
    animation: slide 12s infinite;
  }
  
  @keyframes slide {
    0% { transform: translateX(0%); }
    33% { transform: translateX(0%); }
    66% { transform: translateX(-100%); }
    100% { transform: translateX(-200%); }
  }
  

  /* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
  }
  .navbar__menu, .navbar__icons{
    width: 35%;
  }
  .navbar__logo{
    width: 25%;
    text-align: center;
  }

  .navbar__menu ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .navbar__menu ul li {
    margin-right: 20px;
  }
  
  .navbar__menu ul li a {
    color: #23120a;
    text-decoration: none;
    font-weight: bold;
  }
  
  .navbar__logo img {
    height: 40px;
  }
  .navbar__icons{
    text-align: right;
  }
  
  .navbar__icons i {
    margin-left: 20px;
    color: #23120A;
    font-size: 1.2em;
  }
  
  .navbar__hamburger {
    display: none;
    font-size: 1.5em;
    color: #23120A;
    cursor: pointer;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    background-color: #23120a;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 99;
    transition: all 0.3s ease;
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
  }
  
  .mobile-menu ul li {
    margin: 10px 0;
  }
  
  .mobile-menu ul li a {
    color: #ECFF3E;
    text-decoration: none;
  }
  
  /* Show mobile menu when hamburger is clicked */
  .mobile-menu.open {
    display: block;
  }
  
  .product-page {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: start;
  }
  
  .product-page__left {
    width: 45%;
    position: sticky;
    top: 20px;
  }
  
  .product-page__right {
    width: 54%;
    padding-left: 20px;
  }
  
  .gallery {
    width: 100%;
    margin: 20px auto;
  }
  .gallery-slider {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
  }
  .gallery-slider .swiper-slide {
    width: 100%;
    /* height: 545px; */
  }
  .gallery-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  .gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .gallery-thumbs .swiper-slide {
    width: 100px;
    height: 100px;
    text-align: center;
    overflow: hidden;
    opacity: 0.4;
  }
  .gallery-thumbs .swiper-slide-active {
    opacity: 1;
  }
  .gallery-thumbs .swiper-slide img {
    width: auto;
    height: 100%;
  }
  .swiper-button-prev, .swiper-button-next {
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .gallery-slider:hover .swiper-button-prev, 
  .gallery-slider:hover .swiper-button-next {
    opacity: 1;
  }
  .swiper-button-prev::after, .swiper-button-next::after{
    font-size: 10px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #FDEBD8;
    text-align: center;
    color :#23120A;
    border-radius: 5px;
  }
  /* Product Info Section */
  .product-title {
    font-size: 60px;
    line-height: 72px;
    font-weight: 700;
    font-family:"Span-Cds" ;
  }
  /* Star Rating Styling */
.product-rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  
  .product-rating .stars i {
    color: #FFBD00;
  }
  
  .product-rating .review-count {
    font-size: 14px;
    color: #23120A;
    line-height: 14px;
    margin-left: 10px;
    font-family: "Acumic-Reg";
  }
  .product-price {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #23120a;
    font-family: "Acumic-Reg";
  }
  
  .quantity-selector, .product-variations {
    margin: 15px 0;
  }
  .quantity-selector {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
  }
  
  .quantity-controls {
    display: flex;
    align-items: center;
    width: 80%;
    background-color: #f1ece9;
    border-color: #f1ece9;
    justify-content: space-between;
    border: 3px solid transparent;
    border-radius: 5px;
  }
  .quantity-controls:hover{
    background-color: #E2D8D2;
    border:3px solid #C9B6AB;
  }
  .quantity-controls:hover .quantity-btn{
    background-color: #F6f6f6;
    border-radius: 5px;
  }
  .quantity-controls input[type="number"] {
    width: 80%;
    text-align: center;
    border:none;
    padding: 10px;
    margin: 0 5px;
    background-color: #f1ece9;
    border-color: #f1ece9;
  }
  
  .quantity-btn {
    background-color: #f1ece9;
    border-color: #f1ece9;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .quantity-btn:hover {
    background-color: #F1ECE9;
  }
  
  .quantity-btn:active {
    background-color: #F1ECE9;
  }
  
  .product-variations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .product-variations input[type="radio"] {
    display: none;
  }
  
  .product-variations label {
    padding: 6px 10px;
    background-color: #f0f0f0;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    font-family: "Acumic-Reg";
  }
  .product-variations label:hover{
    background-color: #d8cac2;
    border:3px solid #9f9088;
  }
  
  /* When radio button is checked, change the label's style */
  .product-variations input[type="radio"]:checked + label {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
    color: #ecff3e;
  }

  .product-variations input[type="radio"]:checked + label a {
    color: #ecff3e;
  }
  
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
  }
  
  .btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  /* Add to Cart Button */
  .add-to-cart {
    background-color: #ff4d4d;
    color: #ECFF3E;
    border:4px solid #ff4d4d;
    border-radius: 5px;
    font-weight: 700;
    font-family: "Acumic-Reg";
    transition: all 0.3s ease;
    text-align: center;
  }
  .add-to-cart a {
    color: #ECFF3E;
  }
  
  .add-to-cart:hover {
    border:4px solid #BD1C00;
    border-radius: 5px;
  }
  
  /* Shop Pay Button */
  .shop-pay {
    background-color: #5a31f4;
    color: white;
    font-weight: 700;
    font-family: "Acumic-Reg";
    text-align: center;
    padding: 10px;
  }

  .shop-pay a {
    color: white;
  }
  
  .shop-pay:hover {
    background-color: #4a27d2;
  }
/* Tab Buttons */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
  
  .tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    font-family: "Acumic-Reg";
    color: #ff4d4d;
  }
  
  .tab-btn:hover {
    color: #ff4d4d;
    background-color: #ECFF3E;
    
  }
  
  .tab-btn.active {
    background-color: #ff4d4d;
    color: #ECFF3E;
  }
  /* Tab Content */
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  /* Mobile Tbas  */

  .product-tabs-mobile {
    display: none;
    border: 1px solid #e4e4e7;
  }
  .mobile-tab-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    background-color: #FDEBD8;
    cursor: pointer;
    border: none;
    border-top: 1px solid #e4e4e7;
    font-size: 17px;
    font-weight: 700;
    font-family: "Acumic-Reg";
    color: #ff4d4d;
  }
  .mobile-tab-content {
    display: none;
    padding: 14px 24px;
    background-color: #FDEBD8;
  }
  .mobile-tab-btn i{
    font-size: 10px;
  }
  .mobile-tab-content p{
    margin-bottom: 10px;
  }
  .mobile-tab-btn.active{
    /* color: #FF4524 !important; */
    color: #ECFF3E !important;
    background-color: #ec482a !important;
    border-color: #FF4524 !important;
    border-radius: 0 !important;
  }
  .mobile-tab-btn.active + .mobile-tab-content {
    display: block;
  }
  .mobile-tab-btn.active i {
    transform: rotate(180deg); /* Rotates the chevron when active */
  }
  
/* Reviews Section Container */
.reviews-section {
    margin: 40px 0px;
  }
  
  /* Rating Summary */
  .rating-summary {
    margin-bottom: 20px;
  }
  
  .overall-rating {
    display: flex;
    align-items: center;
  }
  
  .stars {
    color: #ffc107;
    margin-right: 10px;
  }
  
  .review-count {
    font-size: 14px;
    color: black;
  }
  
  /* Rating Bars */
  .rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .rating-bar {
    width: 60%;
    height: 10px;
    background-color: #e0e0e0;
    margin: 0 10px;
    border-radius: 5px;
    position: relative;
  }
  
  .bar-fill {
    height: 100%;
    background-color: #ffc107;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .rating-count {
    font-size: 12px;
  }
  
  /* Write a Review Button */
  .write-review-btn {
    background-color: #ff4d4d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .write-review-btn:hover {
    background-color: #e63939;
  }
  
  /* Customer Reviews */
  .customer-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .review-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
  }
  /* Product Photo Styling */
.product-photo {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0px 0px;
  }
  
  .customer-photo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white;
    margin-right: 15px;
  }
  
  .customer-details {
    flex: 1;
    padding: 0px 15px 15px;
    display: flex;
    flex-flow: column;
    gap: 10px;
  }
  
  .customer-name {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .verified {
    margin-left: 10px;
    font-size: 12px;
    line-height: 12px;
    color: green;
  }
  
  .stars {
    color: #ffc107;
    font-size: 20px;
    line-height: 20px;
  }
  
  .review-text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .review-footer {
    display: flex;
    justify-content: space-between;
  }
  .review-rating{
    font-size: 30px;
    font-weight: 700;
    margin-right: 10px;
    display: inline-block;
  }
  
  .was-helpful {
    font-size: 12px;
    color: #888;
  }
  
  .review-actions {
    display: flex;
    gap: 10px;
  }
  
  .like, .dislike {
    font-size: 12px;
    color: #888;
  }
  .btn-load-block{
    text-align: center;
  }
  .review-load-btn{
    background-color: #fff;
    padding: 10px 30px;
    border: 0px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 40px;
    cursor: pointer;
    
  }
  .review-load-btn a{
    color: #000;
  }
  footer {
    margin-top: 50px;
    padding: 70px 0px 10px 0px;
    background-color: #23120A;
    text-align: left;
    width: 100%;
    color: #ECFF3E;
  }
  
  .footer-top {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin: 0 auto;
  }
  
  .footer-column {
    width: 30%;
  }
  
  .about-us h4, .page-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .page-links ul {
    list-style: none;
    padding: 0;
  }
  
  .page-links ul li {
    margin-bottom: 8px;
  }
  
  .page-links ul li a {
    text-decoration: none;
    color: #ECFF3E;
    font-family: "Acumic-Semi";
  }
  
  .page-links ul li a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    align-items: center;
    
  }
  
  .social-icons a {
    text-decoration: none;
    font-size: 20px;
    color: #ECFF3E;
  }
  
  .social-icons a:hover {
    color: #ECFF3E;
  }
  
  /* Bottom Section */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
  }
  .copyright {
    font-size: 14px;
  }
  .payment-options {
    text-align: right;
  }
  .payment-icons img {
    width: 100%;
    height: auto;
  }
  .payment-options p {
    font-size: 12px;
  }
  
.tab-content a, .mobile-tab-content a {
  color: #ff4524;
  word-break: break-word;
  font-weight: bold;
}
h1 {
  margin-bottom: 12px;
}

.tab-content p {
  margin-bottom: 17px;
}

.tab-content img {
  width: 100%;
}

span.sale-at {
  color: red;
}

span.compare-at {
  text-decoration: line-through !important;
  color: #a59485;
}

div#description ul {
  list-style: disc;
  margin-left: 3em;
}

div#description ul li {
  list-style: unset;
}

img.cards-icons {
  width: 75%;
  margin: auto;
  margin-top: 20PX;
  margin-bottom: 20px;
}

.rating-count {
  display: none;
}

.shopify-policy__title, .page-title-wrapper {
    text-align: center;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.div-policy {
    max-width: 800px;
    margin: auto;
}

h1 {
    font-family: "Span-Cds";
}

.shopify-policy__body ul {
    margin: 0 0 17px 17px;
}

.shopify-policy__body li {
    list-style: disc;
}

.div-policy p {
    margin-bottom: 17px;
}

.div-policy h4 {
    margin-bottom: 12px;
}