* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
	font-family: sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}



/*Header Section css */
/* Header Design start */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 100;
   overflow-x: hidden;
  max-width: 100%;
}
	
/* checkout Section*/

.product-heading {
	 width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 24px;
  
}


.product-heading .heading-container{
      display: flex;
    flex-direction: column;
}

.product-heading .heading1{
      font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 0px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.product-heading .underline{
	margin: 0 auto;
	height: 2px;
    background-color: rgb(197, 153, 73);
    width: 50%;
}

.product-heading .heading2{
	margin-top:15px;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.product-carousel-heading h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.product-carousel-heading h2 span {
  color: #b48b57; /* optional: brand color for Davidoff */
}

.product-carousel-heading p {
  font-size: 16px;
  margin-top: 6px;
}



.checkout-container {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 1rem;
   z-index: -1;
}

.checkout-flex {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cart-summary {
  flex: 1;
  background-color: #f8f8f8;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 300px;
}

.cart-summary h2 {
  margin-bottom: 1rem;
}

#cart-summary-list {
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ccc;
}

.cart-total {
  font-weight: bold;
  font-size: 1.1rem;
  text-align: right;
  margin-top: 1rem;
   line-height: 1.8;
}

.billing-form {
  flex: 2;
  background-color: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 300px;
}

.billing-form h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.checkout-submit {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
}

.checkout-submit:hover {
  background-color: #444;
}
	.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cart-details {
  flex: 1;
}

.cart-qty-wrapper {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

.cart-qty-wrapper button {
  padding: 0.2rem 0.6rem;
  margin: 0 0.3rem;
  background-color: #eee;
  border: none;
  cursor: pointer;
}

.cart-qty {
  width: 40px;
  text-align: center;
}

.cart-delete {
  background: none;
  border: none;
  color: #c00;
  cursor: pointer;
  font-size: 1.2rem;
}
.cart-qty-wrapper button {
  padding: 0.3rem 0.6rem;
  margin: 0 0.2rem;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  cursor: pointer;
}

.cart-qty {
  width: 40px;
  text-align: center;
}

/* checkout Section*/
	



/* Cart Panel */
#cart-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #c59949;
  border: none;
  color: white;
  padding: 1rem 1.2rem;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  font-size: 1.1rem;
  z-index: 1001;
}

/* Cart Panel */
.close-icon {
  position: absolute;
  top: 8px;      /* small distance from top */
  right: 8px;    /* small distance from right */
  background: transparent;
  border: none;
  font-size: 1.6rem;   /* smaller size */
  color: #c59949;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 24px;    /* square clickable area */
  height: 24px;
  text-align: center;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.15);
  padding: 2rem 1.5rem 1.5rem 1.5rem; /* extra top padding for close icon */
  box-sizing: border-box;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.cart-panel.open {
  right: 0;
}

.cart-panel h3 {
  margin-top: 0;
  color: #c59949;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

#cart-items {
  margin-top: 1rem;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-qty-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  background-color: #fff;
  margin: 0.5rem 0;
}

.cart-qty-wrapper button {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  background-color: #fff;   /* White buttons */
  color: #000;              /* Black text */
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cart-qty-wrapper button:hover {
  background-color: #f0f0f0;
}

.cart-qty-wrapper input.cart-qty {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 1rem;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  outline: none;
  background-color: #fff;
  color: #000;
}
.cart-delete {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #c59949; /* golden */
  margin-left: auto;
}

.cart-delete:hover {
  color: #a77f2f;
}

#checkout-container {
  padding: 1rem;
  border-top: 1px solid #eee;
  text-align: center;
  background: #fff;
  position: sticky;
  bottom: 0;
}

#checkout-button {
  background-color: #c59949;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#checkout-button:hover {
  background-color: #a77f2f;
}
#empty-cart-message {
  font-size: 1rem;
  color: #999;
  padding: 1.5rem;
  text-align: center;
  font-style: italic;
}
/* Cart Panel */