/* ==========================================================================
   GLOBAL RESETS & BASE STYLES
   ========================================================================== */

/* Global background & body styles */
body {
  background-color: rgba(243, 243, 238, 1);
}

/* Remove default margins/padding and prevent horizontal scrolling */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Fallback if an element slightly overflows */
}

/* Duplicate reset (ensuring no default margins/padding) */
html,
body {
  margin: 0;
  padding: 0;
}

/* Ensure all elements use border-box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Scale images (and videos/iframes if any) so they never exceed their container */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   FONT-FACE DECLARATIONS
   ========================================================================== */

@font-face {
  font-family: 'Kaelia';
  src: url('../fonts/Kaelia/TTF/KaeliaRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Kaelia';
  src: url('../fonts/Kaelia/TTF/KaeliaSemibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Kaelia';
  src: url('../fonts/Kaelia/TTF/KaeliaBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Anchor defaults */
a {
  text-decoration: none;
  color: inherit;
  font-family: 'Lato', sans-serif;
}

/* ==========================================================================
   HOME PAGE STYLES
   ========================================================================== */

/* Home main container & image */
.home-main {
  display: grid;
  position: relative;
}

.home-image {
  width: 100%;
  height: auto;
}

/* Overlay shop content on home image */
.home-image,
.shop {
  grid-area: 1 / 1;
}

.shop {
  align-self: center;
  justify-self: start;
  margin-left: 5%;
  max-width: 50%;
  color: #fff;
}

/* Responsive title & shop button styling on home page */
.body-title {
  font-family: 'Kaelia';
  font-size: 7rem;
  margin-bottom: 20px;
  font-weight: bolder;
  width: 100%;
  max-width: 800px;
}

.shop-btn {
  font-family: 'Kaelia';
  font-weight: 700;
  border: none;
  cursor: pointer;
  background-color: rgba(65, 48, 38, 1);
  color: #fff;
  padding: 10px 20px;
  font-size: 4rem;
  margin-top: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-btn:hover {
  transform: scale(1.01);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   PRODUCTS & SHOPPING PAGE STYLES
   ========================================================================== */

/* Products Section Header */
.products-title {
  text-align: center;
  margin: 20px auto;
  width: 80%;
  font-family: 'Lato', sans-serif;
}

.products-wrapper {
  margin-top: 150px;
}

/* Title sizes for products */
.title-small {
  font-size: 32px;
  font-weight: 500;
  color: rgba(89, 84, 80, 1);
  margin: 5px;
}

.title-mid {
  font-size: 32px;
  font-weight: 700;
  color: rgba(89, 84, 80, 1);
  margin: 5px;
  margin-bottom: 100px;
}

.title-large {
  font-size: 64px;
  font-weight: 600;
  color: rgba(65, 48, 38, 1);
  margin: 7px;
}

@media screen and (max-width: 480px) {
  .title-mid {
    margin-bottom: 0;
  }
}

/* Products grid layout */
.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  margin: 20px auto; 
  padding: 0 20px;
}

/* Shop product price & card styles */
.shop-product-price {
  margin-right: 20%;
}

.product-card {
  text-align: center;
}

.img-container {
  position: relative;
  width: 80%;       
  padding-bottom: 120%;
  overflow: hidden;
  margin: 0 auto;   
}

/* Product image & heart button */
.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.heart-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.heart-button:hover {
  transform: scale(1.1);
}

.heart-img {
  width: 42px;
}

@media screen and (max-width: 480px) {
  .heart-img {
    width: 32px;
  }
}

.product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: rgba(65, 48, 38, 1);
}

.home-product-price {
  font-size: 16px;
  color: rgba(65, 48, 38, 1);
  margin-top: 5px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  text-align: center;
  display: block;
  margin: 5px auto 0;
}

/* Shopping Page Header & Filters */
.shopping-title {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  background-color: rgba(252, 252, 249, 1);
  margin-top: 5%;
  padding-top: 5%;
  padding-bottom: 10%;
  font-size: 48px;
}

.shop-product-price {
  margin: 0 auto;
  color: rgba(65, 48, 38, 1);
  font-family: 'Lato', sans-serif;
  font-weight: 500;
}

.shopping-title h1 {
  color: rgba(65, 48, 38, 1);
  font-family: 'Lato', sans-serif;
  letter-spacing: 10px;
  margin-bottom: 50px;
  font-size: 48px;
}

.filters {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
}

.filter-btn {
  border: none;
  cursor: pointer;
  background: none;
  transition: transform 0.2s ease-in-out;
  font-weight: 700;
  font-size: 32px;
}

.filter-btn:hover {
  transform: scale(1.1);
}

.shop-product-name {
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
  margin-top: -40px;
}

.cart-btn {
  position: relative;
  bottom: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(65, 48, 38, 1);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  margin: 0 auto;
  width: 60%;
  box-sizing: border-box;
  transition: transform 0.2s ease-in-out;
}

.cart-btn:hover {
  transform: scale(1.1);
}

.cart {
  width: 30px;
  height: auto;
}

.load-more-btn {
  font-family: 'Lato', sans-serif;
  padding: 10px;
  width: 120px;
  border: none;
  background-color: rgba(217, 217, 217, 1);
  cursor: pointer;
  color: rgba(65, 48, 38, 1);
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin: 115px auto 80px auto;
  text-align: center;
  transition: transform 0.1s ease-in-out;
}

.load-more-btn:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-title {
  text-align: center;
  color: rgba(65, 48, 38, 1);
  font-family: 'Lato', sans-serif;
  margin-top: 2rem;
  font-weight: 800;
}

.about-title > h4 {
  font-size: 24px;
}

/* Section 1: Vision & Image */
.sec-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
  width: 70%;
  margin: 0 auto;
}

.sec-1 img {
  width: 50%;
  height: auto;
}

.vision {
  flex: 1;
  font-size: 24px;
  word-spacing: 5px;
  line-height: 40px;
  margin-left: 100px;
}

/* Section 2: Our Product & Image */
.sec-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 1rem;
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
  width: 70%;
  margin: 0 auto;
}

.sec-2 img {
  width: 55%;
  height: auto;
}

.our-product {
  flex: 1;
  font-size: 24px;
  word-spacing: 5px;
  line-height: 40px;
}

.our-product-right {
  margin-left: 100px;
}

/* Section 3: Heading & Image */
.sec-3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
  width: 70%;
  margin: 0 auto;
}

.sec-3 img {
  width: 50%;
  height: auto;
}

.sec-3 h1 {
  flex: 1;
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .vision {
    line-height: 30px;
  }
  .vision > h1 {
    font-size: 35px;
  }
  .our-product {
    line-height: 30px;
  }
  .our-product > h1 {
    font-size: 35px;
  }
}

/* ==========================================================================
   FAQS PAGE STYLES
   ========================================================================== */

.faqs-title {
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
  font-size: 64px;
}

.faqs-sect {
  font-size: 40px;
}

.faqs-container {
  margin: 10%;
  margin-top: 80px;
  word-spacing: 5px;
  line-height: 1.5;
  letter-spacing: 3px;
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
}

.faqs-questions {
  display: flex;
  justify-content: space-between;
  margin: 50px;
  margin-left: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
  padding-left: 40px;
}

.faqs-questions > button {
  border: none;
  font-size: 50px;
  color: rgba(65, 48, 38, 1);
  background: transparent;
  cursor: pointer;
  margin-right: -60px;
}

.faqs-questions > h3 {
  width: 70%;
}

.question {
  font-size: 40px;
  font-family: 'Kaelia';
}

.ans {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-left: 100px;
  margin-bottom: 0;
  font-size: 30px;
}

.ans.show {
  max-height: 100%;
  opacity: 1;
  margin-left: 100px;
}

.ans-container {
  margin-bottom: 100px;
}

/* ==========================================================================
   PRODUCT DETAILS PAGE STYLES
   ========================================================================== */

.details-title {
  text-align: center;
  font-family: 'Lato', sans-serif;
  margin-top: 50px;
}

.details-container {
  display: flex;
  margin: 30px;
  padding-bottom: 200px;
  position: relative;
}

.details-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  width: calc(100% + 60px);
  border-bottom: 2px solid gray;
}

.details-image-wrapper {
  display: grid;
  place-items: center;
  position: relative;
}

.details-img {
  width: 90%;
  margin-right: 80px;
  height: auto;
}



.arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20%;
  top: 40%;
}

.details {
  display: flex;
  flex-direction: column;
  margin-top: -30px;
  font-family: 'Lato', sans-serif;
  color: rgba(0, 0, 0, 1);
}

.details > h1 {
  font-size: 64px;
  font-family: 'Kaelia';
  font-weight: 600;
}

.details > h2 {
  font-size: 40px;
  font-family: 'Kaelia';
  font-weight: 600;
  width: 70%;
}

.details > h3 {
  font-size: 64px;
  font-weight: 500;
  margin-top: 0;
}

.details > h4 {
  font-size: 32px;
}

.colors {
  border: 2px solid gray;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5%;
  margin-right: 15%;
}

.colors > label {
  padding: 60px;
  border-radius: 100%;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  outline: none;
}

.colors > label:hover {
  transform: scale(1.05);
}

/* When the associated radio is checked, show the outline */
.colors input:checked + label {
  outline: 2px solid rgb(172, 142, 97);
  outline-offset: 3px;
}

/* Color-specific styles */
.colors-red {
  background-color: rgba(252, 43, 43, 1);
}

.colors-pink {
  background-color: rgba(255, 55, 175, 1);
}

.colors-orange {
  background-color: rgba(240, 122, 39, 1);
}

.colors-nod {
  background-color: rgba(162, 49, 51, 1);
}

.details-add {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: start;
}

.counter-group {
  display: inline-flex; 
  border: 1px solid #ccc; 
  border-radius: 4px; 
  overflow: hidden; 
}

/* Shared styles for the minus/plus buttons and the input */
.counter-group .counter,
.counter-group .counter-input {
  border: none;
  background-color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 10px 10px;
}

.counter-input {
  /* For Firefox */
  -moz-appearance: textfield;
  /* For general appearance reset */
  appearance: none;
  
  
  font-weight: 700;
  font-size: 30px;
}

/* For Chrome, Safari, Edge (WebKit-based) */
.counter-input::-webkit-inner-spin-button,
.counter-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* The input specifically */
.counter-group .counter-input {
  width: 50px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}


.counter-group .counter {
  cursor: pointer;
  width: 40px;
  text-align: center;
  font-size: 2rem;
  padding: 10px 0;
  border: none;
  background-color: #fff;
  transition: transform 0.1s ease-in-out;
}

.counter-group .counter:hover {
  background-color: #f2f2f2;
}

.counter-group .counter:not(:last-child),
.counter-group .counter-input {
  border-right: 1px solid #ccc;
}

.details-add-btn {
  margin-left: 50px;
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
  font-size: 40px;
  background-color: rgba(65, 48, 38, 1);
  color: rgba(255, 255, 255, 1);
  border: none;
  transition: transform 0.2s ease-in-out;
  padding: 15px;
}

.details-add-btn:hover {
  transform: scale(1.05);
}

.details-add > button {
  cursor: pointer;
}

.details-add > input::-webkit-outer-spin-button,
.details-add > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.details-add > input {
  width: 30px;
  text-align: center;
}

.details-FAQS {
  width: 50%;
  margin-left: 100px;
  font-family: 'Lato', sans-serif;
  color: rgba(65, 48, 38, 1);
}

.question {
  font-weight: 500;
}

.details-woman-img {
  margin-left: 15%;
  width: 150%;
  height: auto;
  display: block;
  grid-area: 1 / 1 / 2 / 2;
}

.woman-container {
  display: grid;
  place-items: center;
  margin: 0 auto;
  position: relative;
  left: 30%;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
}





@media screen and (max-width: 550px) {
  .details-add-btn {
    padding: 5px;
    font-size: 20px;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-title {
  text-align: center;
  color: rgba(65, 48, 38, 1);
  font-family: 'Kaelia';
  margin-bottom: 3%;
  font-size: 48px;
}

.line {
  display: flex;
  align-items: center;
  margin-bottom: 10%;
}

.line h1 {
  margin: 0;
  margin-right: 1rem;
  font-size: 24px;
}

.line hr {
  flex: 1;
  margin: 0 15%;
  border: none;
  border-top: 1px solid #000;
}

.contact-container {
  display: flex;
}

.contact-left {
  margin: 5%;
  color: rgba(65, 48, 38, 1);
  font-family: 'Lato', sans-serif;
  width: 50%;
  position: relative;
}

.contact-left h3 {
  font-weight: 400;
}

.short-vertical-line {
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 90%;
  background-color: rgba(0, 0, 0, 0.6);
}

.contact-left > h1 {
  margin-bottom: 5%;
}

.row {
  display: flex;
  margin-bottom: 5%;
  gap: 5%;
}

.row > div {
  flex: 1;
}

.contact-input {
  height: 40px;
  width: 70%;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.message-input {
  height: 200px;
  width: 87%;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.textarea {
  margin-top: 15%;
  font-weight: 400;
}

.contact-input,
.message-input {
  font-size: 1.2rem;
}

.contact-send-btn {
  margin-top: 10%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  width: 6rem;
  color: rgba(65, 48, 38, 1);
  font-family: 'Kaelia';
  font-weight: 600;
  font-size: 32px;
  background-color: rgba(217, 217, 217, 1);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.contact-send-btn:hover {
  transform: scale(1.1);
}

.contact-right {
  flex: 1;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: rgba(65, 48, 38, 1);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
}

/* Row for heading + line in contact right section */
.right-line {
  display: flex;
  align-items: center;
  width: 95%;
}

.right-line h1 {
  margin: 0;
  margin-right: 1rem;
  white-space: nowrap;
}

.line-extension {
  flex: 1;
  border: none;
  border-top: 1px solid #000;
  margin-top: 25px;
  margin-left: 90px;
}

.contact-text {
  margin-right: 5%;
  margin-top: 15%;
  margin-bottom: 20%;
  font-size: 24px;
  line-height: 40px;
}

.contacts {
  gap: 72px;
  margin-top: 15%;
  display: flex;
  flex-direction: column;
}

.contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact > h3 {
  font-weight: 100;
}

/* ==========================================================================
   CART PAGE STYLES
   ========================================================================== */

/* Cart item row */
.cart-item {
  display: flex;
  gap: 1rem;
  margin: 5rem;
  flex-wrap: nowrap;
  font-family: 'Lato', sans-serif;
}

/* Cart product image */
.cart-product-image {
  width: 180px;
  height: auto;
  object-fit: contain;
}

/* Cart product details */
.cart-product-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-right: 15px;
  min-width: 0;
}

.cart-product-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0.25rem 0;
  white-space: nowrap;
}

.cart-product-price {
  margin: 0.25rem 0;
}

.unique-price {
  margin-left: 10px;
}

/* Cart product color */
.cart-product-color {
  display: flex;
  align-items: center;
  margin: 0.25rem 0;
}

.color-circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-left: 0.5rem;
}

/* Cart buttons & counter */
.cart-buttons {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.cart-input {
  width: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

/* Remove default number input arrows */
.cart-input::-webkit-outer-spin-button,
.cart-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* Order summary styling */
.order-summary {
  margin: 0 auto;
  width: 30%;
  max-height: 800px;
  background-color: rgba(240, 240, 239, 1);
}

.checkout-btn {
  margin-bottom: 5%;
  margin-top: 10%;
  margin-left: 15%;
  width: 70%;
  background-color: rgba(151, 151, 151, 1);
  border: none;
  padding: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease-in-out;
}

.checkout-btn:hover {
  transform: scale(1.05);
}

.summary-details {
  margin-left: 7%;
  color: rgba(65, 48, 38, 1);
  font-family: 'Lato', sans-serif;
  margin-right: 5%;
}

.summary-details > h2 {
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 200;
}

.total-details {
  display: flex;
  justify-content: space-between;
}

.shipping-tax {
  font-weight: 200;
}

.order-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20%;
}

.order-total > h3 {
  margin-top: 25px;
}

/* ==========================================================================
   CHECKBOX & UTILITY STYLES
   ========================================================================== */

/* Custom checkbox design for terms & conditions */
.terms-conditions {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 1px solid gray;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  position: relative;
}

.terms-conditions:checked {
  background-color: rgba(249, 160, 0, 1);
}

.terms-conditions:checked::before {
  content: "\2713"; /* Unicode check mark */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(240, 240, 239, 1);
}

.terms-container {
  display: flex;
  align-items: center;
  margin: 20px;
}

.terms-container > h4 {
  margin-left: 5px;
}

.mastercard {
  position: relative;
  top: 10px;
}

.cart-counter {
  display: inline-block;
  width: 50px;
  text-align: center;
  cursor: pointer;
}

.cart-buttons {
  display: flex;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

/* HOME PAGE RESPONSIVE ADJUSMENTS */
@media screen and (max-width: 800px) {
  .body-title {
    font-size: 2.5rem;
  }
  .home-image {
    height: 800px;
  }
  .title-small,
  .title-mid {
    font-size: 20px;
  }
  .title-large {
    font-size: 30px;
  }
  .shop-btn {
    font-size: 1.5rem;
  }

  /* Products grid changes */
  .products {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}

/* SMALL SCREENS (up to 480px) */
@media screen and (max-width: 480px) {
  .title-small,
  .title-mid {
    font-size: 10px;
  }
  header {
    height: 150px !important;
  }
  .home-image {
    height: 400px;
  }
  .title-large {
    font-size: 15px;
  }
  .body-title {
    font-size: 1.5rem;
    max-width: 100%;
  }
  .shop-btn {
    font-size: 0.8rem;
  }

  /* Products grid changes */
  .products {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}

/* SHOPPING PAGE RESPONSIVE ADJUSTMENTS*/
@media screen and (max-width: 800px) {
  .cart-btn {
    margin-top: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .products-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .filter-btn {
    font-size: 15px;
  }
  .shopping-title h1 {
    font-size: 25px;
  }
  .filters {
    max-width: 250px;
  }
  .cart-btn {
    padding-bottom: 4px;
    padding-top: 4px;
    margin-top: 32px;
    font-size: 0.9rem;
  }
  .cart {
    width: 20px;
  }
  .shop-product-name {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1000px) and (min-width: 700px) {
  .shopping-title {
    padding-top: 4%;
    padding-bottom: 8%;
    margin-top: 4%;
  }
}

/* ABOUT PAGE RESPONSIVE ASJUSTMENTS*/
@media screen and (max-width: 1000px) {
  .sec-1 {
    display: grid;
    place-items: center;
    width: 100%;
  }
  .vision {
    margin-right: 50px;
    margin-top: 30px;
    width: 90%;
  }
  .our-product {
    margin: 20px;
  }
  .sec-2 {
    display: flex;
    flex-direction: column-reverse;
    place-items: center;
    width: 100%;
  }
  .our-product {
    margin-top: 30px;
    width: 90%;
  }
  .sec-3 {
    display: grid;
    place-items: center;
    width: 100%;
  }
}

/* FAQS PAGE RESPONSIVE */
@media screen and (max-width: 800px) {
  .faqs-container {
    letter-spacing: 1.5px;
    word-spacing: 3.5px;
  }
  .faqs-title {
    font-size: 2rem;
  }
  .faqs-sect {
    font-size: 30px;
  }
  .faqs-questions {
    font-size: 12px;
  }
  .ans {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .faqs-container {
    letter-spacing: 1px;
    word-spacing: 2px;
  }
  .faqs-title {
    font-size: 2rem;
  }
  .faqs-sect {
    font-size: 25px;
  }
  .question {
    font-size: 30px;
    line-height: 30px;
  }
  .ans.show {
    font-size: 20px;
  }
}

/* PRODUCT DETAILS PAGE RESPONSIVE */
@media screen and (max-width: 1000px) {
  .details > h1,
  .details > h2,
  .details > h3 {
    font-size: 28px;
  }
  .details-container {
    flex-direction: column;
  }
  .details-img {
    margin: auto;
    margin-bottom: 30px;
    width: 80%;
  }
}

@media screen and (max-width: 800px) {
  .details > h1,
  .details > h2,
  .details > h3 {
    font-size: 23px;
  }
  .woman-container {
    position: relative;
    left: 20%;
  }
  .colors > label {
    padding: 40px;
  }
  .play-btn {
    width: 7rem;
  }
}

@media screen and (max-width: 700px) {
  .details-question {
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  .details > h1,
  .details > h2,
  .details > h3 {
    font-size: 18px;
  }
  .details-question {
    font-size: 18px;
  }
  
  .colors > label {
    padding: 20px;
  }
  .arrow > img {
    width: 20px;
  }
  .woman-container {
    position: relative;
    left: 10%;
  }
  .play-btn {
    width: 5rem;
  }

  .answer-btn{
    font-size: 30px !important;
  }

  .details-FAQS{
    margin-left: 10px;
    width: 80%;
  }
}

/* CONTACT PAGE RESPONSIVE ADJUSTMENTS*/
@media screen and (max-width: 1000px) {
  .contact-container {
    display: flex;
    flex-direction: column;
  }

  /* Position the line horizontally */
  .short-vertical-line {
    position: absolute;
    top: 110%;
    left: 0;
    right: auto;
    width: 90%;
    height: 1px;
  }
  body {
    overflow-x: hidden;
  }
  .contact-right {
    margin-top: 20%;
    margin-left: 5%;
  }
  .contact-left {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .contact-title {
    font-size: 25px;
  }
  .line > h1 {
    font-size: 20px;
  }
  .contact-right h1 {
    font-size: 20px;
  }
  .contact-text {
    font-size: 18px;
  }
}

/* CART PAGE RESPONSIVE */
@media screen and (max-width: 950px) {
  .cart-wrapper {
    flex-direction: column;
  }
  #cart-container,
  .order-summary {
    width: 100%;
  }
}

@media screen and (max-width: 760px) {
  .cart-item {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }
  .cart-product-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .cart-product-details {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .cart-buttons {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cart-item {
    margin: 1rem;
    align-items: center;
  }
  .cart-product-details {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .cart-item {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
  }
  /* Image takes full width */
  .cart-product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  /* Details and buttons stack below the image */
  .cart-product-details,
  .cart-buttons {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
