:root {
    --accent: #d4af37;
    --black: #000000;
    --gray-text: #666;
    --border: #e0e0e0;
    --sale-red: #e60000;

    --primary:#4CAF50;
    --secondary:#8BC34A;
    --background: #F5F5DC;
    --accentt:#A67C52 ;
    --text: #2E2E2E;
} 


body {
    /* font-family: 'Helvetica Neue', Arial, sans-serif; */
        font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    color: var(--text);
    background:var(--background)
}

/* Header & Top Bar */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    overflow: hidden;
    height: 20px;
}
/* @keyframes moving-text {
    0% { transform: translateX(90vw); }
    100% { transform: translateX(-90vw); }
    
   

} */

.main-header {
    display: flex;
    justify-content:space-between;
    align-items: center;
    /* padding: 15px 20px; */
    padding: 0px 20px 0px 15px;
    /* border-bottom: 1px solid var(--border); */
}

#promo-text{
    display: inline-block;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--text);
    margin: 0;
    padding: 0;
  
}

.logo span {
    color: var(--primary);
}

/* Hero Media */
.product-media {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior:smooth;
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    margin: 0px 2px 0px 2px;
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.carousel-slide {
    flex: 0 0 100%;   /* better than min-width */
    scroll-snap-align: start;

    display: flex;
    justify-content: center;
    align-items: center;
     
}

.carousel-slide img {
    width: 100%;
    /* max-width: 450px; */
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

#main-product-img {
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
}

.stock-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accentt);
    color: var(--text);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 2px;
    letter-spacing: 1px;
}

/* Dot Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;

}

.dot {
    height: 8px;
    width: 8px;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}



.zoom-icon {
    position: absolute;
    right: 30px;
    bottom: 80px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    height: 8px;
    width: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

/* Product Info */
.product-info {
    padding: 0 20px;
    text-align: center;
}

.category-label {
    font-weight: bold;
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
}

.product-title {
    font-size: 26px;
    margin: 0 0 10px 0;
}

.rating-summary .stars {
    color: #000;
    font-size: 14px;
}
.stars-mini{
    color: var(--accentt);
}
.rating-summary .count {
    font-size: 13px;
    color: var(--gray-text);
}

.pricing {
    margin: 15px 0;
    border-bottom: 1px solid var(--border);
    padding-top: 10px;

}

.original-price {
    text-decoration: line-through;
    color: var(--gray-text);
    font-size: 16px;
}

.sale-price {
    font-size: 23px;
    font-weight: bold;
    margin-left: 10px;
    color: var(--primary);
}

.save-badge {
    color: var(--secondary);
    font-size: 13px;
    margin-top: 5px;
}

/* Trust Badges */
.trust-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
    font-size: 13px;
    color: #444;
}

.trust-item {
  
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    height: 8px;
    width: 8px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0px 5px 1px #2ecc71;
}

/* Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--text);
   font-family: "Fuzzy Bubbles", sans-serif; 
}
.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-solid {
    background: var(--accentt);
     color:white;
   font-family: "Fuzzy Bubbles", sans-serif; 
}
#days , #countdown>div>p, #hours , #minutes , #seconds{
    color: var(--primary);
}
.countdown-container > h3{
    color:var(--accentt)
}
li::marker{
    color: var(--secondary);
}
/* Content Blocks */
.product-details {
    padding: 20px 20px;
}

.detail-block h3 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.detail-block ul {
    padding-left: 20px;
}

.detail-block li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

.accordion-item {
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    padding: 15px 0;
    margin-top: -1px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: bold;
    color: var(--gray-text);
}

/* Reviews */
/* Container styling */
.reviews-section {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #333;
}

.reviews-section h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Star styling */
#empty-state i, .review-card .stars i {
    color: #ffc107; /* Modern Gold */
    margin-right: 2px;
    font-size: 0.9rem;
}

#empty-state p {
    color: #888;
    margin-top: 10px;
}

/* The Review Form (The modern "Card" look) */
#review-form-container {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Inputs & Textarea */
#review-form-container input, 
#review-form-container textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for responsiveness */
}

#review-form-container input:focus, 
#review-form-container textarea:focus {
    outline: none;
    background: #fff;
    border-color: #333;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn-write, #btn-submit {
    padding: 12px 24px;
    border-radius: 50px; /* Pill shape is very modern */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    width: 100%;;
}

/* "Write a Review" Button (Main Action) */
.btn-write {
    background: #333;
    color: #fff;
    display: block;
    margin: 20px auto;
}

.btn-write:hover {
    background: #000;
    transform: translateY(-2px);
}

/* "Post Review" Button */
#btn-submit {
    background: #27ae60;
    color: white;
    width: 100%;
}

#btn-submit:hover {
    background: #219150;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Individual Review Cards */
.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: scale(1.01);
}

.review-card h4 {
    margin: 10px 0 5px 0;
    font-weight: 700;
}

.review-card p {
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .reviews-section {
        padding: 0 15px;
    }
    
    #review-form-container {
        padding: 15px;
    }

    .btn-write {
        width: 100%;
    }
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 5px;
   
}

.bar {
    height: 10px;
    flex-grow: 1;
    background: #eee;
}

.fill {
    height: 100%;
    background: var(--accentt);
}
.footer-links > li{
    color: whitesmoke;
}
.btn-write {
    background:var(--text);
 font-family: "Plus Jakarta Sans", sans-serif;
    color: #fff;
    width: 100%;
    padding: 12px;
    margin: 20px 0;
    border: none;
    font-weight: bold;
}



.footer {
    background: var(--accentt);
    padding: 20px 10px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    line-height: 2.5;
    font-size: 14px;
}
.countdown-container {
  text-align: center;
  /* padding: 20px; */
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
}

#countdown {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}

#countdown div {

  /* padding: 15px; */
  border-radius: 10px;
  width: 70px;
}

#countdown span {
  font-size: 24px;
  font-weight: bold;
}

#countdown p {
  font-size: 12px;
  margin: 5px 0 0;
}
@media(min-width: 769px){
    .product-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
   
}
#shipping{
    display: none;
    margin-top: 30px;
    font-size: 13px;

}
#asking{
    display: none;
    margin-top: 30px;
    font-size: 13px;

}


#cart{
     display: flex;
     flex-direction: column;
    background-color: white;
    position: fixed;
    height: 100vh;
    width: 0px;
    right: 0px;
    z-index:1;
    overflow-y: auto;
    transition: width 0.3s ease;

}

#cart>h1 {
    margin: 15px 15px 5px 10px;
    border-bottom: 1px solid var(--border);
}
#cart>span {
    align-self: flex-end;
    position: relative;
    bottom: 38px;
    margin-right: 25px;
    font-weight: bolder;
    cursor: pointer;
}
#cart-content{
    display: flex;
}
#cart-content>img{
    width: 100px;
    margin: 10px 10px 0px 10px;
}
#cart-content>h4{
    margin-top: 10px;
   width: 100%;
   margin-bottom: 0px;

}
#cart-details>span{
    position: relative;
    top: -22px;
    left: 120px;
    
}
#cart-details>#qty{
    border: 1px solid var(--accentt);
    padding: 1px 8px 1px 8px;
}
#cart-details>#plus{
    margin-left: 0px;
    border: 1px solid var(--accentt);
    padding: 1px 5px 1px 5px;
    margin-right: 25px;
    cursor: pointer;
}
#cart-details>#minus{
    margin-left: 0px;
    border: 1px solid var(--accentt);
    padding: 1px 5px 1px 5px;
        cursor: pointer;

}
/* #cart-details{
    margin-bottom: 250px;
} */
#cart>#sub{
    display: flex;
    justify-content: space-between;
    height: 50vh;
    align-items: flex-end;
    border-top:1px solid var(--border);
}
#sub>span{
    margin:10px 10px 0px 10px ;
    font-weight: 1000;
}
#cart>p{
    text-align: center;
}
#cart>a{
    background: var(--primary);
    color: white;
    border: none;
    padding: 13px;
    margin: 35px 5px 20px 5px;
    font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
   text-align: center;
}


.faq-section {
    padding: 60px 20px;
    background-color: var(--background);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    background: var(--secondary);
    border: 1px solid var(--faq-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: color 0.2s;
}

.faq-item.active .faq-question {
    color: white;
}

/* The Arrow Icon */
.arrow-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    margin-right: 5px;
}

.faq-item.active .arrow-icon {
    transform: rotate(-135deg);
    border-color: white;
}

/* The Answer (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--border);
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--faq-muted);
    line-height: 1.6;
    margin: 0;
}
.rounded-features-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 60px; /* Space between image and text */
    margin-bottom: 80px;
}

/* Alternate direction */
.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-img-wrapper {
    flex: 1;
    max-width: 500px;
}

.feature-img-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes it a perfect square */
    object-fit: cover;
    border-radius: 50%; /* Modern rounded corners */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: block;
}

.feature-info {
    flex: 1;
}

.feature-info h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .feature-item, .feature-item.reverse {
        flex-direction: column; /* Stack vertically on small screens */
        text-align: center;
        gap: 30px;
    }

    .feature-img-wrapper {
        width: 100%;
        max-width: 400px; /* Slightly smaller on mobile */
    }

    .feature-img-wrapper img {
        border-radius: 50%; /* Slightly less rounded for smaller screens */
    }

    .feature-info h3 {
        font-size: 1.5rem;
    }
}
li > a{
    color: white;
    text-decoration: none;
}
/* Container to make the table responsive on mobile */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #F5F5DC; /* Background Palette */
  color: #2E2E2E;            /* Text Palette */
}

.product-specs thead {
  background-color: #4CAF50; /* Primary Palette */
  color: #FFFFFF;
  text-align: left;
}

.product-specs th, 
.product-specs td {
  padding: 12px 15px;
  border-bottom: 1px solid #A67C52; /* Accent Palette for subtle borders */
}

/* Zebra striping for better readability */
.product-specs tbody tr:nth-child(even) {
  background-color: #8BC34A15; /* Transparent Secondary Palette */
}

/* Hover effect for a modern feel */
.product-specs tbody tr:hover {
  background-color: #8BC34A30; 
  transition: background-color 0.3s ease;
}

.product-specs th {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}