


/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed header */
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ========== HEADER STYLES ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #cec9c9;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
}

.logo {
width: 240px;
height: 60px;
overflow: hidden;
display: flex;
align-items: left;
justify-content: left;
}

.logo img {
width: 100%;          
height: 100%;         
object-fit: cover;    
object-position: left; 
transform: none;      
} 

/* ========== DESKTOP NAVIGATION ========== */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    margin-left: 25px;
    font-size: 16px;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #9a713e;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #9a713e;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========== MOBILE MENU TOGGLE ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .line {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 1000;
}

.mobile-nav.active {
    max-height: 100vh;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #9a713e;
}

/* ========== OVERLAY ========== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ========== HERO SECTION ========== */
.hero-section {
    display: flex;
    align-items: center;
    padding: 100px 5% 80px;
    min-height: 500px;
    margin-top: 80px;
    background-color: #f9f9f9;
}

.hero-content {
    flex: 1;
    padding: 0 60px;
    z-index: 2;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-section h1 {
    font-size: 2.8rem;
    color: #9a713e;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 500px;
}

.shop-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #9a713e;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #9a713e;
}

.shop-button:hover {
    background-color: transparent;
    color: #9a713e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(154, 113, 62, 0.3);
}

/* ========== DISCOVER SECTION ========== */
.discover-section {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    min-height: 500px;
    background-color: #faf7f2;
    flex-direction: row-reverse;
}

.discover-content {
    flex: 1;
    padding: 0 60px;
    z-index: 2;
    text-align: right;
}

.discover-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discover-image {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.discover-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.discover-section h2 {
    font-size: 2.8rem;
    color: #9a713e;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.discover-section p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991px) {
    /* Header adjustments */
    .site-header {
        padding: 15px 20px;
    }
    
    .logo {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 120px; /* Adjust based on logo */
}

.logo img {
width: 100%;
height: auto;
}
    
    /* Hide desktop nav, show mobile toggle */
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero section adjustments */
    .hero-section {
        flex-direction: column;
        padding: 80px 5% 60px;
        text-align: center;
    }
    
    .hero-content {
        padding: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section h1,
    .hero-section p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        width: 380px;
        height: 380px;
    }
    
    /* Discover section adjustments */
    .discover-section {
        flex-direction: column;
    }
    
    .discover-content {
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
    }
    
    .discover-section p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .discover-image {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-section h1,
    .discover-section h2 {
        font-size: 2.2rem;
    }
    
    .hero-image,
    .discover-image {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 5% 40px;
    }
    
    .hero-section h1,
    .discover-section h2 {
        font-size: 1.8rem;
    }
    
    .hero-section p,
    .discover-section p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-image,
    .discover-image {
        width: 280px;
        height: 280px;
    }
    
    .shop-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Mobile menu adjustments */
    .mobile-nav li {
        padding: 12px 20px;
    }
}

/* ========== HAMBURGER ANIMATION ========== */
.menu-toggle.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}




/* ========== CATEGORIES SECTION ========== */
.categories-section {
padding: 40px 10%;
text-align: center;
background-color: #f9f9f9;
}

.section-title {
font-size: 28px;
color: #222;
margin-bottom: 40px;
text-transform: uppercase;
letter-spacing: 2px;
}

.category-grid {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
}

.category-card {
width: 200px;
text-decoration: none;
color: inherit;
transition: transform 0.3s ease;
}

.category-card:hover {
transform: translateY(-5px);
}

.category-image {
width: 100%;
height: 200px;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
margin-bottom: 15px;
}

.category-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
transform: scale(1.05);
}

.category-name {
font-size: 18px;
color: #333;
font-weight: 500;
margin: 0;
text-transform: capitalize;
}

/* ========== PRODUCTS SECTION ========== */
.store-section {
padding: 100px 20px;
background-color: #fff;
text-align: center;
}

.product-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
padding: 0 10px;
}
.store-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 30px;
}

.section-title {
  font-size: 2rem; /* Increased size */
  color: black ;/* Changed to gold */
  margin: 0 auto 15px; /* Centered with bottom margin */
  position: relative;
  display: block; /* Changed from inline-block */
  text-align: center;
  padding: 20px 0 0; /* Adjusted padding */
  width: 100%;
}

.title-decoration {
  width: 80px;
  height: 3px;
  background: #9a713e;
  margin: 0 auto;
}
.product-card {
background: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
padding: 15px;
text-align: center;
transition: transform 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-image {
width: 100%;
height: 150px;
overflow: hidden;
margin-bottom: 10px;
border-radius: 8px;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
transform: scale(1.05);
}

.product-name {
font-size: 16px;
color: #333;
margin: 8px 0;
font-weight: 600;
}

.product-price {
font-size: 18px;
color: #9a713e;
font-weight: 700;
margin: 8px 0;
}

/* .add-to-cart {
background-color: #9a713e;
color: white;
border: none;
padding: 8px 15px;
border-radius: 20px;
font-size: 14px;
cursor: pointer;
margin-top: 5px;
transition: background 0.3s ease;
}

.add-to-cart:hover {
background-color: #7d5c32;
} */

/* ========== FOOTER ========== */
.site-footer {
background-color: #222;
color: #fff;
padding: 50px 0 20px;
margin-top: 50px;
}

.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer-section {
width: 23%;
min-width: 200px;
margin-bottom: 30px;
}

.footer-section h3 {
color: #9a713e;
font-size: 18px;
margin-bottom: 20px;
font-weight: 600;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 10px;
}

.footer-section ul li a {
color: #ddd;
text-decoration: none;
transition: color 0.3s;
}

.footer-section ul li a:hover {
color: #9a713e;
}

.social-icons {
display: flex;
gap: 15px;
margin-bottom: 20px;
align-items: center;
}

.social-icons a img {
width: 30px;
height: 30px;
transition: transform 0.3s;
}

.social-icons a:hover img {
transform: scale(1.1);
}

.newsletter-form {
display: flex;
margin-top: 10px;
}

.newsletter-form input {
flex: 1;
padding: 10px;
border: none;
border-radius: 4px 0 0 4px;
}

.newsletter-form button {
background-color: #9a713e;
color: white;
border: none;
padding: 0 15px;
border-radius: 0 4px 4px 0;
cursor: pointer;
transition: background 0.3s;
}

.newsletter-form button:hover {
background-color: #7d5c32;
}

.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid #444;
margin-top: 30px;
font-size: 14px;
color: #aaa;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (min-width: 768px) {
.product-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 1024px) {
.product-grid {
grid-template-columns: repeat(4, 1fr);
}
}

@media (max-width: 768px) {
.footer-section {
width: 48%;
}
.social-icons {
    justify-content: center; /* Center the icons horizontally */
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content; /* Make container only as wide as needed */
  }
}

@media (max-width: 600px) {
.footer-container {
flex-direction: column;
align-items: center;
}
.footer-section {
width: 90%;
text-align: center;
}
.social-icons {
    justify-content: center; /* Center the icons horizontally */
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content; /* Make container only as wide as needed */
  }
}

@media (max-width: 480px) {
.footer-section {
width: 100%;
}
.social-icons {
    justify-content: center; /* Center the icons horizontally */
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content; /* Make container only as wide as needed */
  }
}

/* ========== UTILITY CLASSES ========== */
.product-card, .category-card, .shop-button {
transition: all 0.1s ease-in-out;
}

/* ========== PAGE-SPECIFIC STYLES ========== */
/* FAQ Page */
.faq-container {

max-width: 800px;
margin: 150px auto 50px;
padding: 0 20px;
}

.faq-header {
text-align: center;
margin-bottom: 40px;
}

.faq-item {
margin-bottom: 30px;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
}

.faq-question {
color: #333;
font-size: 20px;
font-weight: 600;
margin-bottom: 10px;
display: flex;
align-items: center;
}

.faq-question:before {
content: "Q";
display: inline-block;
background: #9a713e;
color: white;
width: 25px;
height: 25px;
border-radius: 50%;
text-align: center;
line-height: 25px;
margin-right: 15px;
font-size: 14px;
}

.faq-answer {
color: #555;
line-height: 1.6;
padding-left: 40px;
}

.faq-answer:before {
content: "A";
display: inline-block;
background: #f5f5f5;
color: #9a713e;
width: 25px;
height: 25px;
border-radius: 50%;
text-align: center;
line-height: 25px;
margin-right: 15px;
font-size: 14px;
font-weight: bold;
}

/* Contact Page */
.contact-container {
max-width: 900px;
margin: 150px auto 50px;
background: #f3efef;
padding: 60px 60px ;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
color: #333;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.contact-form label {
text-align: left;
font-weight: bold;
color: #444;
}

.contact-form input,
.contact-form textarea {
padding: 12px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1em;
width: 100%;
box-sizing: border-box;
}

.contact-form button {
padding: 12px 20px;
background-color: #9a713e;
color: #fff;
border: none;
border-radius: 6px;
font-size: 1.1em;
cursor: pointer;
transition: background-color 0.3s ease;
}

.contact-form button:hover {
background-color: #7d5c32;
}

/* Other Page Templates */
.policy-container,
.our-story-container,
.privacy-content {
max-width: 1000px;
margin: 150px auto 50px;
padding: 40px;
background-color: #f3efef;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
font-family: 'Segoe UI', sans-serif;
color: #333;
line-height: 1.7;
}

.policy-container h1,
.our-story-container h1,
.privacy-content h1 {
font-size: 2.5rem;
color: #cec9c9;
margin-bottom: 20px;
border-bottom: 2px solid #f2dcdc;
padding-bottom: 10px;
}

.policy-container h2,
.our-story-container h2,
.privacy-content h2 {
font-size: 1.8rem;
margin-top: 30px;
color: #9a713e;
}

/* Store Page */
.store-section {
padding: 40px 20px;
background-color: #f9f9f9;
}

.store-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
max-width: 1200px;
margin: auto;
}

/* ========== MEDIA QUERIES FOR SMALL DEVICES ========== */
@media (max-width: 768px) {
h1 {
font-size: 36px;
line-height: 42px;
}

h2 {
font-size: 30px;
line-height: 36px;
}

.hero-text h1 {
font-size: 32px;
}

.faq-question {
font-size: 18px;
}

.store-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 480px) {
.product-name {
font-size: 0.9rem;
}

.product-price {
font-size: 0.9rem;
}

.add-to-cart {
padding: 6px 12px;
font-size: 0.85rem;
}

.hero-section,
.first-page-container {
flex-direction: column;
}

.image-content,
.hero-image {
max-width: 100%;
height: 250px;
}
}

 .affiliate-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('affiliate-bg.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 30px;
    margin: 0 auto;
}

.affiliate-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 50px;
}
    .affiliate-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
     padding: 30px 60px 30px 60px;
      margin-bottom: 30px;
    }
    .affiliate-card h2 {
      color: #9a713e;
      margin-bottom: 20px;
    }
    .affiliate-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 30px 0;
    }
    .benefit-item {
      flex: 1;
      min-width: 200px;
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
    }
    .benefit-item img {
      width: 50px;
      margin-bottom: 15px;
    }
    .cta-button {
    display: inline-block;
    background: #9a713e;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-decoration: none;
}
    .cta-button:hover {
    background: #7d5c32;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.affiliate-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.affiliate-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.affiliate-form input::placeholder {
    color: #999;
    opacity: 1;
}

/* Cart Panel Styles */
    .cart-panel {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 400px;
      height: 100vh;
      background: white;
      z-index: 1100;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      transition: right 0.4s ease;
      display: flex;
      flex-direction: column;
    }
    
    .cart-panel.open {
      right: 0;
    }
    
    .cart-panel-header {
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
    }
    
    .cart-panel-header h2 {
      margin: 0;
      color: #333;
    }
    
    .close-cart-panel {
      font-size: 30px;
      cursor: pointer;
      color: #777;
      transition: color 0.3s;
    }
    
    .close-cart-panel:hover {
      color: #333;
    }
    
    .cart-items-container {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
    }
    
    .cart-item {
      display: flex;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #f5f5f5;
    }
    
    .cart-item-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      margin-right: 15px;
      border-radius: 5px;
    }
    
    .cart-item-details {
      flex: 1;
    }
    
    .cart-item-name {
      margin: 0 0 8px;
      font-size: 16px;
      color: #333;
    }
    
    .cart-item-price {
      margin: 0 0 8px;
      color: #9a713e;
      font-weight: bold;
    }
    
    .remove-item {
      background: none;
      border: none;
      color: #e74c3c;
      cursor: pointer;
      padding: 0;
      font-size: 14px;
      transition: color 0.3s;
    }
    
    .remove-item:hover {
      color: #c0392b;
      text-decoration: underline;
    }
    
    .cart-panel-footer {
      padding: 20px;
      border-top: 1px solid #eee;
    }
    
    .cart-total {
      display: flex;
      justify-content: space-between;
      font-size: 18px;
      margin-bottom: 20px;
      font-weight: bold;
    }
    
    .checkout-btn {
      width: 100%;
      padding: 15px;
      background: #9a713e;
      color: white;
      border: none;
      cursor: pointer;
      font-weight: bold;
      font-size: 16px;
      border-radius: 5px;
      transition: background 0.3s;
    }
    
    .checkout-btn:hover {
      background: #7a5b30;
    }
    
    /* Cart Overlay */
    .cart-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1000;
      display: none;
    }
    
    .empty-cart {
      text-align: center;
      color: #777;
      font-style: italic;
      margin-top: 30px;
    }
    
    /* Fixed Cart Styles */
    
    

    

    
    /* Quantity Modal Styles */
    .quantity-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 1300;
      justify-content: center;
      align-items: center;
    }
    
    .modal-content {
      background: white;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      position: relative;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      color: #777;
      transition: color 0.3s;
    }
    
    .close-modal:hover {
      color: #333;
    }
    
    .modal-content h3 {
      margin-bottom: 25px;
      color: #333;
    }
    
    .quantity-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 25px 0;
    }
    
    .quantity-controls button {
      padding: 10px 20px;
      font-size: 22px;
      cursor: pointer;
      background: #f5f5f5;
      border: none;
      border-radius: 5px;
      transition: background 0.3s;
    }
    
    .quantity-controls button:hover {
      background: #e0e0e0;
    }
    
    .quantity-input {
      width: 70px;
      height: 50px;
      text-align: center;
      margin: 0 15px;
      padding: 5px;
      font-size: 20px;
      border: 2px solid #ddd;
      border-radius: 5px;
    }
    
    .confirm-add-to-cart {
      background: #4CAF50;
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 18px;
      font-weight: bold;
      width: 100%;
      transition: background 0.3s;
    }
    
    .confirm-add-to-cart:hover {
      background: #45a049;
    }
    


    .add-to-cart {
      display: block;
      width: calc(100% - 30px);
      margin: 15px;
      padding: 12px;
      background: #9a713e;
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .add-to-cart:hover {
      background: #7a5b30;
    }
    




    /* Draggable Cart Styles */
    .fixed-cart-container {
      position: fixed;
      top: 120px;
      right: 20px;
      z-index: 1200;
      transition: top 0.3s ease;
      cursor: grab;
      user-select: none;
    }

    .fixed-cart-container.dragging {
      cursor: grabbing;
      opacity: 0.9;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

    .cart-icon-wrapper {
    position: relative;
      background-color: #9a713e;
      padding: 10px 15px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      color: white;
      font-weight: bold;
      transition: transform 0.3s, background 0.3s;
}

    .cart-icon-wrapper:hover {
      background: #7a5b30;
      transform: scale(1.05);
    }

    .cart-icon {
      width: 20px;
      height: 20px;
      filter: brightness(0) invert(1);
    }

    .cart-count {
      background-color: white;
      color: #9a713e;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1px;
      font-weight: bold;
    }

    .cart-text {
      font-size: 14px;
    }
  
    
    
.cart-count {
  background-color: white;
  color: #9a713e;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
    
    .cart-text {
      font-size: 14px;
    }
    





    
    /* Instructions */
    .instructions {
      background: white;
      border-radius: 10px;
      padding: 20px;
      margin-top: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      max-width: 600px;
    }
    
    .instructions h2 {
      color: #9a713e;
      margin-bottom: 15px;
    }
    
    .instructions p {
      margin-bottom: 10px;
      line-height: 1.6;
    }
    
    .instructions ul {
      padding-left: 20px;
      margin: 15px 0;
    }
    
    .instructions li {
      margin-bottom: 8px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      
      .fixed-cart-container {
        top: 80px;
        right: 10px;
      }
      
      .cart-text {
        display: none;
      }
    }

.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.checkout-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-checkout {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.checkout-content h2 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group .input-note {
  font-size: 0.85em;
  color: #666;
  font-weight: normal;
  font-style: italic;
  display: inline-block;
  margin-left: 5px;
}
/* For mobile responsiveness */
@media (max-width: 480px) {
  .form-group .input-note {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}
.order-summary {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.order-summary h3 {
    margin-bottom: 10px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.delivery-charges,
.order-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-weight: bold;
}

.order-total {
    font-size: 18px;
}

.place-order-btn {
    width: 100%;
    padding: 12px;
    background: #9a713e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.place-order-btn:hover {
    background: #9a713e;
}


/* Order Confirmation Popup Styling */
.confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    position: relative;
}

.order-confirmation {
    color: #333;
}

.order-confirmation h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
    text-align: center;
}

.customer-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #9a713e;
}

.customer-details p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

.customer-details strong {
    color: #2c3e50;
    font-weight: 600;
    display: inline-block;
    width: 120px;
}

.ordered-items {
    margin-bottom: 25px;
}

.ordered-items h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}

.ordered-items ul {
    list-style-type: none;
    padding-left: 0;
}

.ordered-items li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #9a713e;
}

.order-summary p {
    margin: 8px 0;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

.order-summary .total {
    font-size: 18px;
    font-weight: bold;
    color: #9a713e;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.important-notice {
    background-color: #e7e1e1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #9a713e;
}

.important-notice h4 {
    color: #9a713e;
    margin-top: 0;
    margin-bottom: 15px;
}

.important-notice p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.5;
}

.important-notice .highlight {
    font-weight: 600;
    color: #d35400;
}

.whatsapp-contact {
    margin-top: 15px;
}

.whatsapp-contact a {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-contact a:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-contact img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.thank-you-message {
    text-align: center;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.thank-you-message h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 10px;
}

.thank-you-message p {
    color: #7f8c8d;
    font-size: 16px;
}

.close-popup {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #9a713e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.close-popup:hover {
    background-color: #9a713e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .popup-content {
        padding: 20px;
        width: 95%;
    }
    
    .customer-details strong {
        width: 100px;
    }
    
    .order-confirmation h2 {
        font-size: 24px;
    }
}



/* CSS for Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 80px; /* Match your header height */
  left: 0;
  right: 0;
  height: 30px;
  background-color: #8a6436;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 999;
}

.announcement-message {
  font-size: 13px;
  font-weight: 500;
  color: white;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  white-space: nowrap;
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease-in-out;
}
