 /* === General Styles === */
 body {
     margin: 0;
     font-family: 'Segoe UI', Arial, sans-serif;
     background: #fff;
     color: #222;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1.5rem;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: serif;
 }

 /* === Header Styles === */
 .header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 50;
     background: transparent;
     color: #fff;
     padding: 1rem 0;
     background-color: rgba(124, 74, 2, 0.3);
     backdrop-filter: blur(5px);
 }

 .header-flex {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .header-logo {
     height: 50px;
     display: flex;
     align-items: center;
     animation-duration: 1s;
     /* Slower animation for logo */
 }

 .logo-img {
     height: 100%;
     width: auto;
     max-width: 180px;
     object-fit: contain;
     filter: brightness(0) invert(1);
     transition: filter 0.3s ease;
 }

 .logo-img:hover {
     filter: brightness(0) invert(1) opacity(0.8);
 }

 .header-nav {
     display: flex;
     gap: 2rem;
     animation-duration: 0.8s;
     /* Faster animation for nav items */
 }

 .header-nav a {
     color: #fff;
     text-decoration: none;
     font-size: 1rem;
     transition: color 0.2s;
     display: inline-block;
     /* Needed for individual animations */
 }

 /* Individual animation for each nav item */
 .header-nav a:nth-child(1) {
     animation-delay: 0.1s;
 }

 .header-nav a:nth-child(2) {
     animation-delay: 0.2s;
 }

 .header-nav a:nth-child(3) {
     animation-delay: 0.3s;
 }

 .header-nav a:nth-child(4) {
     animation-delay: 0.4s;
 }

 .header-nav a:nth-child(5) {
     animation-delay: 0.5s;
 }

 .header-nav a:hover {
     color: #fbbf24;
     transform: translateY(-2px);
     /* Add slight lift on hover */
 }

 .hamburger-btn {
     display: none;
     /* Hidden by default */
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 0.5rem;
     z-index: 60;
 }

 .hamburger-bar {
     display: block;
     width: 25px;
     height: 2px;
     background: #fff;
     margin: 5px 0;
     transition: all 0.3s ease;
 }

 /* Mobile Styles */
 @media (max-width: 768px) {
     .hamburger-btn {
         display: block;
         /* Show hamburger button on mobile */
     }

     .header-nav {
         position: fixed;
         top: 0;
         right: -100%;
         /* Hide off-screen by default */
         width: 70%;
         height: 100vh;
         background-color: rgba(124, 74, 2, 0.95);
         backdrop-filter: blur(10px);
         flex-direction: column;
         align-items: center;
         justify-content: center;
         gap: 2rem;
         transition: right 0.3s ease-in-out;
         z-index: 55;
     }

     .header-nav.active {
         right: 0;
         /* Slide in when active */
     }

     /* Animation for individual nav items in mobile menu */
     .header-nav a {
         opacity: 0;
         transform: translateX(20px);
         transition: all 0.3s ease;
     }

     .header-nav.active a {
         opacity: 1;
         transform: translateX(0);
     }

     /* Staggered animation delays */
     .header-nav.active a:nth-child(1) {
         transition-delay: 0.1s;
     }

     .header-nav.active a:nth-child(2) {
         transition-delay: 0.2s;
     }

     .header-nav.active a:nth-child(3) {
         transition-delay: 0.3s;
     }

     .header-nav.active a:nth-child(4) {
         transition-delay: 0.4s;
     }

     .header-nav.active a:nth-child(5) {
         transition-delay: 0.5s;
     }

     /* Transform hamburger to X when active */
     .hamburger-btn.active .hamburger-bar:nth-child(1) {
         transform: translateY(7px) rotate(45deg);
     }

     .hamburger-btn.active .hamburger-bar:nth-child(2) {
         opacity: 0;
     }

     .hamburger-btn.active .hamburger-bar:nth-child(3) {
         transform: translateY(-7px) rotate(-45deg);
     }
 }

 /* === Hero Section Styles === */
 .hero-section {
     position: relative;
     min-height: 90vh;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     background: #fff;
     margin-top: 0;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background-image: url('abc.png');
     background-size: cover;
     background-position: center;
     opacity: 0.8;
     z-index: 0;
 }

 .hero-gradient {
     position: absolute;
     inset: 0;
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: #fff;
 }

 .hero-title {
     font-size: 2.5rem;
     font-weight: bold;
     margin-bottom: 1rem;
     line-height: 1.1;
 }

 @media (min-width: 768px) {
     .hero-title {
         font-size: 3.5rem;
     }
 }

 .hero-highlight {
     color: #fbbf24;
     display: block;
 }

 .hero-desc {
     font-size: 1.25rem;
     margin-bottom: 2rem;
     font-weight: 300;
     color: #fff;
     opacity: 0.9;
 }

 .hero-btn {
     background: #fbbf24;
     color: #fff;
     font-weight: 600;
     padding: 1rem 2.5rem;
     border: none;
     border-radius: 999px;
     font-size: 1.1rem;
     cursor: pointer;
     transition: background 0.2s, transform 0.2s;
 }

 .hero-btn:hover {
     background: #b45309;
     transform: scale(1.05);
 }

 .animate__animated {
     opacity: 0;
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 .animate__fadeInUp {
     transform: translateY(30px);
 }

 .animate__animated.animate__active {
     opacity: 1;
     transform: translateY(0);
 }

 /* === Product Section Styles === */
 .product-section {
     padding: 5rem 0;
     background: #fdf6e3;
 }

 .product-flex {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 2rem;
 }

 @media (min-width: 1024px) {
     .product-flex {
         flex-direction: row;
         align-items: flex-start;
     }

     .product-img-col {
         width: 50%;
     }

     .product-content-col {
         width: 50%;
         padding-left: 4rem;
     }
 }

 .product-img-col {
     width: 100%;
     margin-bottom: 2rem;
 }

 .product-img {
     border-radius: 0.75rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
     max-width: 400px;
     width: 100%;
     height: 471px;
     display: block;
     margin: 0 auto;
     object-fit: cover;
 }

 .product-content-col {
     width: 100%;
 }

 .product-title {
     font-size: 2rem;
     font-family: serif;
     font-weight: bold;
     margin-bottom: 1rem;
     color: #7c4a02;
 }

 .product-labels {
     display: flex;
     gap: 0.5rem;
     margin-bottom: 1rem;
     flex-wrap: wrap;
 }

 .product-label {
     font-size: 0.75rem;
     text-transform: uppercase;
     background: #fde9b5;
     color: #b45309;
     padding: 0.25rem 0.75rem;
     border-radius: 999px;
     font-weight: 600;
 }

 .product-size-options {
     margin-bottom: 1.5rem;
 }

 .product-size-title {
     font-size: 1rem;
     color: #7c4a02;
     margin-bottom: 0.5rem;
     font-weight: 600;
 }

 .size-buttons {
     display: flex;
     gap: 0.75rem;
     flex-wrap: wrap;
 }

 .size-btn {
     background: #fde9b5;
     color: #7c4a02;
     border: 1px solid #fbbf24;
     border-radius: 0.5rem;
     padding: 0.5rem 1rem;
     cursor: pointer;
     transition: all 0.2s;
     font-size: 0.9rem;
 }

 .size-btn:hover {
     background: #fbbf24;
     color: white;
 }

 .size-btn.active {
     background: #fbbf24;
     color: white;
     font-weight: bold;
 }

 .price-container {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .product-price {
     font-size: 2.5rem;
     font-weight: bold;
     color: #7c4a02;
     margin: 0;
 }

 .product-original-price {
     font-size: 20px;
     color: #efa42f;
     text-decoration: line-through;
     margin-top: 15px;
 }

 .product-benefits {
     margin-bottom: 2rem;
 }

 .product-benefits-title {
     font-size: 1.1rem;
     color: #7c4a02;
     font-weight: 600;
     margin-bottom: 0.75rem;
 }

 .product-benefits-list {
     list-style: none;
     padding: 0;
 }

 .product-benefits-list li {
     display: flex;
     align-items: center;
     margin-bottom: 0.5rem;
     color: #7c4a02;
 }

 .product-benefits-icon {
     margin-right: 0.5rem;
     color: #b45309;
 }

 .product-btn {
     background: #fbbf24;
     color: #fff;
     font-weight: bold;
     padding: 1rem 2.5rem;
     border: none;
     border-radius: 999px;
     font-size: 1.1rem;
     cursor: pointer;
     transition: background 0.2s, transform 0.2s;
     width: 100%;
     max-width: 300px;
 }

 .product-btn:hover {
     background: #b45309;
     transform: scale(1.05);
 }

 /* Modal Styles */
 .modal-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.7);
     z-index: 1000;
     backdrop-filter: blur(5px);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .modal-overlay.show {
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 1;
 }

 .modal-container {
     background: white;
     border-radius: 20px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
     overflow: hidden;
     max-width: 900px;
     width: 90%;
     max-height: 90vh;
     display: flex;
     position: relative;
     transform: scale(0.8) translateY(50px);
     transition: transform 0.3s ease;
 }

 .modal-overlay.show .modal-container {
     transform: scale(1) translateY(0);
 }

 .modal-left {
     flex: 1;
     background: linear-gradient(135deg, rgba(124, 74, 2, 0.9), rgba(124, 74, 2, 0.7));
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     min-height: 500px;
     overflow: hidden;
 }

 .modal-left::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
     opacity: 0.3;
 }

 .cart-icon {
     width: 200px;
     height: 200px;
     border-radius: 50%;
     background: linear-gradient(45deg, #fbbf24, #f59e0b);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 2;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
     border: 4px solid rgba(255, 255, 255, 0.2);
     font-size: 80px;
     color: white;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
     overflow: hidden;
 }

 .cart-icon img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }


 .modal-right {
     flex: 1.2;
     padding: 40px;
     background: linear-gradient(135deg, #fef7ed, #fef3c7);
     max-height: 90vh;
     overflow-y: auto;
 }

 .modal-header {
     text-align: center;
     margin-bottom: 30px;
 }

 .modal-title {
     font-size: 28px;
     font-weight: 700;
     color: #7c4a02;
     margin-bottom: 8px;
 }

 .modal-subtitle {
     color: #b45309;
     font-size: 16px;
     font-weight: 400;
 }

 .close-btn {
     position: absolute;
     top: 20px;
     right: 20px;
     background: rgba(255, 255, 255, 0.9);
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     color: #6c757d;
     transition: all 0.3s ease;
     z-index: 10;
 }

 .close-btn:hover {
     background: white;
     color: #dc3545;
     transform: scale(1.1);
 }

 /* Customer Details Form */
 .customer-details-section {
     background: rgba(255, 255, 255, 0.9);
     border-radius: 12px;
     padding: 25px;
     margin-bottom: 25px;
     border: 2px solid #fde9b5;
 }

 .section-title {
     font-size: 18px;
     font-weight: 600;
     color: #7c4a02;
     margin-bottom: 20px;
     text-align: center;
 }

 .form-group {
     margin-bottom: 18px;
     position: relative;
 }

 .form-label {
     display: block;
     margin-bottom: 6px;
     font-weight: 600;
     color: #7c4a02;
     font-size: 13px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .form-input {
     width: 100%;
     padding: 12px 14px;
     border: 2px solid #fde9b5;
     border-radius: 8px;
     font-size: 14px;
     transition: all 0.3s ease;
     background: rgba(255, 255, 255, 0.9);
     color: #7c4a02;
 }

 .form-input:focus {
     outline: none;
     border-color: #fbbf24;
     box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
     background: white;
     transform: translateY(-1px);
 }

 .form-input::placeholder {
     color: #b45309;
     font-style: italic;
     opacity: 0.7;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
 }

 .btn-group {
     display: flex;
     gap: 12px;
 }

 .btn {
     flex: 1;
     padding: 14px 24px;
     border: none;
     border-radius: 12px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .btn-primary {
     background: linear-gradient(135deg, #fbbf24, #f59e0b);
     color: white;
     box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
 }

 .btn-secondary {
     background: #6c757d;
     color: white;
     box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
 }

 .btn-secondary:hover {
     background: #5a6268;
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .modal-container {
         flex-direction: column;
         width: 95%;
         margin: 20px;
     }

     .modal-left {
         min-height: 200px;
     }

     .cart-image {
         width: 120px;
         height: 120px;
     }

     .cart-icon {
         font-size: 50px;
     }

     .modal-right {
         padding: 30px 20px;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .customer-details-section {
         padding: 20px 15px;
     }

     .form-input {
         font-size: 16px;
         /* Prevent zoom on iOS */
     }

     .product-flex {
         padding: 0 1rem;
     }
 }

 /* Floating Animation Elements */
 .floating-elements {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     overflow: hidden;
     pointer-events: none;
 }

 .floating-circle {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     animation: float 6s ease-in-out infinite;
 }

 .floating-circle:nth-child(1) {
     width: 80px;
     height: 80px;
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .floating-circle:nth-child(2) {
     width: 60px;
     height: 60px;
     top: 60%;
     right: 15%;
     animation-delay: 2s;
 }

 .floating-circle:nth-child(3) {
     width: 40px;
     height: 40px;
     bottom: 30%;
     left: 20%;
     animation-delay: 4s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(180deg);
     }
 }

 /* === Benefits Section Styles === */
 .benefits-section {
     padding: 5rem 0;
     background: #fde68a22;
 }

 .benefits-title {
     font-size: 2rem;
     font-family: serif;
     font-weight: bold;
     margin-bottom: 1rem;
     color: #7c4a02;
     text-align: center;
 }

 .benefits-desc {
     text-align: center;
     color: #444;
     margin-bottom: 2.5rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .benefits-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

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

 .benefit-card {
     background: #fff;
     border-radius: 0.75rem;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
     padding: 2rem;
     text-align: center;
     transition: transform 0.3s;
 }

 .benefit-card:hover {
     transform: translateY(-8px);
 }

 .benefit-icon {
     width: 3.5rem;
     height: 3.5rem;
     background: #fffbeb;
     color: #fbbf24;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem auto;
     font-size: 2rem;
 }

 .benefit-title {
     font-size: 1.2rem;
     font-family: serif;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #7c4a02;
 }

 .benefit-desc {
     color: #666;
     font-size: 1rem;
 }

 /* Add these animation styles to your existing CSS */
 .animate__animated {
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .animate__fadeInUp {
     transform: translateY(30px);
 }

 .animate__animated.animate__active {
     opacity: 1;
     transform: translateY(0);
 }

 /* Animation delays for staggered effect */
 #benefits-title {
     transition-delay: 0.1s;
 }

 #benefits-desc {
     transition-delay: 0.2s;
 }

 #benefit-card-1 {
     transition-delay: 0.3s;
 }

 #benefit-card-2 {
     transition-delay: 0.4s;
 }

 #benefit-card-3 {
     transition-delay: 0.5s;
 }

 #benefit-card-4 {
     transition-delay: 0.6s;
 }

 /* Existing benefits styles remain the same */
 .benefits-section {
     padding: 5rem 0;
     background: #fde68a22;
 }

 /* ... rest of your existing CSS ... */
 /* Add these animation styles to your existing CSS */
 .animate__animated {
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .animate__fadeInUp {
     transform: translateY(30px);
 }

 .animate__animated.animate__active {
     opacity: 1;
     transform: translateY(0);
 }

 /* Animation delays for staggered effect */
 #product-title {
     transition-delay: 0.1s;
 }

 #product-labels {
     transition-delay: 0.2s;
 }

 #size-options {
     transition-delay: 0.3s;
 }

 #price-container {
     transition-delay: 0.4s;
 }

 #product-benefits {
     transition-delay: 0.5s;
 }

 #product-btn {
     transition-delay: 0.6s;
 }

 /* === About Section Styles === */
 .about-section {
     padding: 5rem 0;
     background: #fdf6e3;
     position: relative;
     overflow: hidden;
 }

 .about-bg-pattern {
     position: absolute;
     inset: 0;
     opacity: 0.05;
     width: 100%;
     height: 100%;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23BD9A3C' stroke-opacity='1' stroke-width='2'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23BD9A3C' stroke-opacity='1' stroke-width='2'/%3E%3C/svg%3E");
     background-size: 56px 100px;
 }

 .about-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1.5rem;
     position: relative;
     z-index: 10;
 }

 .about-flex {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 @media (min-width: 1024px) {
     .about-flex {
         flex-direction: row;
     }

     .about-content-col {
         padding-left: 4rem;
     }
 }

 .about-img-col {
     width: 100%;
     margin-bottom: 2.5rem;
 }

 @media (min-width: 1024px) {
     .about-img-col {
         width: 50%;
         margin-bottom: 0;
     }
 }

.about-img {
    border-radius: 0.75rem;
    
    max-width: 550px;
    width: 100%;
    /* Make image fill its container */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
}

/* Optional: Add different max-width for smaller screens if needed */
@media (max-width: 768px) {
    .about-img {
        max-width: 100%;
        /* Allow image to take full width on mobile */
        padding: 0 1rem;
        /* Add some padding if needed */
    }
}

/* For very small screens, you might want to adjust the shadow */
@media (max-width: 480px) {
/*    .about-img {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
       
    }  */
}

 .about-content-col {
     width: 100%;
 }

 @media (min-width: 1024px) {
     .about-content-col {
         width: 50%;
     }
 }

 .about-title {
     font-size: 2rem;
     font-family: serif;
     font-weight: bold;
     margin-bottom: 1.5rem;
     color: #7c4a02;
 }

 @media (min-width: 768px) {
     .about-title {
         font-size: 2.5rem;
     }
 }

 .about-text {
     color: #444;
     margin-bottom: 1.5rem;
     line-height: 1.7;
 }

 .about-quote-box {
     background: #fffbeb;
     padding: 1.5rem;
     border-radius: 0.75rem;
     border-left: 4px solid #d97706;
 }

 .about-quote {
     color: #b45309;
     font-style: italic;
     font-family: serif;
 }

 .animate__animated {
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .animate__fadeInUp {
     transform: translateY(30px);
 }

 .animate__animated.animate__active {
     opacity: 1;
     transform: translateY(0);
 }

 /* Animation delays for staggered effect */
 #about-img {
     transition-delay: 0.1s;
 }

 #about-title {
     transition-delay: 0.2s;
 }

 #about-text-1 {
     transition-delay: 0.3s;
 }

 #about-text-2 {
     transition-delay: 0.4s;
 }

 #about-quote {
     transition-delay: 0.5s;
 }

 /* === Testimonials Section Styles === */
 .testimonials-section {
     padding: 5rem 0;
     background: #fff7ed;
     position: relative;
 }

 .testimonials-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 1rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .testimonials-scroll-container {
     overflow-x: hidden;
     padding: 1rem 0;
     width: calc(100% - 100px);
 }

 .testimonials-cards {
     display: flex;
     flex-wrap: nowrap;
     gap: 2rem;
     justify-content: flex-start;
     width: max-content;
     transition: transform 0.3s ease;
 }

 .testimonial-card {
     flex: 0 0 auto;
     width: 509px;
     background: #fff;
     border-radius: 1rem;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
     padding: 2rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .testimonials-title {
     font-size: 2rem;
     font-family: serif;
     font-weight: bold;
     margin-bottom: 2.5rem;
     color: #7c4a02;
     text-align: center;
 }

 .testimonial-img {
     width: 5rem;
     height: 5rem;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 1rem;
     border: 4px solid #fffbeb;
 }

 .testimonial-stars {
     color: #fbbf24;
     margin-bottom: 0.5rem;
     font-size: 1.1rem;
 }

 .testimonial-quote {
     color: #444;
     font-style: italic;
     margin-bottom: 1rem;
 }

 .testimonial-name {
     font-weight: bold;
     color: #7c4a02;
 }

 .testimonial-role {
     color: #b45309;
     font-size: 0.95rem;
     margin-bottom: 0.5rem;
 }

 .animate__animated {
     opacity: 0;
     transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .animate__fadeInUp {
     transform: translateY(30px);
 }

 .animate__animated.animate__active {
     opacity: 1;
     transform: translateY(0);
 }

 /* Animation delays for staggered effect */
 #testimonials-title {
     transition-delay: 0.1s;
 }

 #testimonial-1 {
     transition-delay: 0.2s;
 }

 #testimonial-2 {
     transition-delay: 0.3s;
 }

 #testimonial-3 {
     transition-delay: 0.4s;
 }

 #testimonial-4 {
     transition-delay: 0.5s;
 }

 /* Scroll buttons */
 .scroll-button {
     background: #fbbf24;
     color: white;
     border: none;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     font-size: 1.2rem;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     flex-shrink: 0;
     position: absolute;
     z-index: 2;
 }

 .scroll-button:hover {
     background: #b45309;
     transform: scale(1.1);
 }

 .scroll-button:active {
     transform: scale(0.95);
 }

 .scroll-left {
     left: 0px;
 }

 .scroll-right {
     right: 0px;
 }

 /* Hide scrollbar */
 .testimonials-scroll-container::-webkit-scrollbar {
     display: none;
 }

 .testimonials-scroll-container {
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 /* Responsive CSS - Add this to your existing CSS */

 @media (max-width: 768px) {
     .testimonials-scroll-container {
         width: calc(100% - 80px);
         overflow-x: hidden;
     }

     .testimonials-cards {
         display: flex;
         flex-wrap: nowrap;
         gap: 1rem;
         justify-content: flex-start;
         width: max-content;
         transition: transform 0.5s ease;
     }

     .testimonial-card {
         flex: 0 0 auto;
         width: calc(100vw - 120px);
         /* Full width minus padding and button space */
         max-width: 320px;
         min-width: 280px;
         background: #fff;
         border-radius: 1rem;
         box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
         padding: 1.5rem;
         display: flex;
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .scroll-button {
         width: 35px;
         height: 35px;
         font-size: 1rem;
         background: #fbbf24;
         color: white;
         border: none;
         border-radius: 50%;
         cursor: pointer;
         display: flex;
         align-items: center;
         justify-content: center;
         transition: all 0.3s ease;
         flex-shrink: 0;
         position: absolute;
         z-index: 2;
         top: 50%;
         transform: translateY(-50%);
     }

     .scroll-button:hover {
         background: #b45309;
         transform: translateY(-50%) scale(1.1);
     }

     .scroll-button:active {
         transform: translateY(-50%) scale(0.95);
     }

     .scroll-left {
         left: 10px;
     }

     .scroll-right {
         right: 10px;
     }

     .testimonials-title {
         font-size: 1.5rem;
         margin-bottom: 2rem;
     }

     .testimonial-img {
         width: 4rem;
         height: 4rem;
     }

     .testimonial-quote {
         font-size: 0.9rem;
         line-height: 1.5;
     }
 }

 @media (max-width: 480px) {
     .testimonials-section {
         padding: 3rem 0;
     }

     .testimonial-card {
         width: calc(100vw - 100px);
         max-width: 269px;
         min-width: 250px;
         padding: 1.25rem;
     }

     .testimonials-title {
         font-size: 1.25rem;
         margin-bottom: 1.5rem;
     }

     .scroll-left {
         left: 5px;
     }

     .scroll-right {
         right: 5px;
     }

     .testimonial-img {
         width: 3.5rem;
         height: 3.5rem;
     }

     .testimonial-quote {
         font-size: 0.85rem;
     }

     .testimonial-name {
         font-size: 0.9rem;
     }

     .testimonial-role {
         font-size: 0.8rem;
     }
 }

 /* === Contact Section Styles === */
 .contact-section {
     padding: 5rem 0;
     background: #7c4a02;
     color: #fff;
 }

 .contact-flex {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 @media (min-width: 1024px) {
     .contact-flex {
         flex-direction: row;
     }

     .contact-form-col {
         width: 50%;
     }

     .contact-info-col {
         width: 50%;
         padding-left: 4rem;
     }
 }

 .contact-form-col {
     width: 100%;
     margin-bottom: 2rem;
 }

 .contact-title {
     font-size: 2rem;
     font-family: serif;
     font-weight: bold;
     margin-bottom: 1.5rem;
 }

 .contact-desc {
     color: #fde68a;
     margin-bottom: 2rem;
 }

 .contact-form label {
     display: block;
     margin-bottom: 0.5rem;
     color: #fde68a;
 }

 .contact-form input,
 .contact-form textarea {
     width: 100%;
     padding: 0.75rem 1rem;
     border-radius: 0.5rem;
     border: 1px solid #b45309;
     background: #a16207;
     color: #fff;
     margin-bottom: 1.2rem;
     font-size: 1rem;
     outline: none;
 }

 .contact-form input:focus,
 .contact-form textarea:focus {
     border-color: #fbbf24;
     background: #fde68a22;
 }

 .contact-form button {
     background: #fbbf24;
     color: #fff;
     font-weight: bold;
     padding: 1rem 2.5rem;
     border: none;
     border-radius: 999px;
     font-size: 1.1rem;
     cursor: pointer;
     transition: background 0.2s, transform 0.2s;
 }

 .contact-form button:hover {
     background: #b45309;
     transform: scale(1.05);
 }

 .contact-info-box {
     background: #a16207;
     padding: 2rem;
     border-radius: 0.75rem;
     margin-bottom: 2rem;
 }

 .contact-info-title {
     font-size: 1.3rem;
     font-family: serif;
     font-weight: bold;
     margin-bottom: 1rem;
 }

 .contact-info-list {
     color: #fde68a;
     margin-bottom: 1rem;
 }

 .contact-socials {
     display: flex;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .contact-social-link {
     background: #b45309;
     color: #fff;
     border-radius: 50%;
     padding: 0.7rem;
     font-size: 1.2rem;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s;
     text-decoration: none;
 }

 .contact-social-link:hover {
     background: #fbbf24;
     color: #7c4a02;
 }

 .contact-shop-btn {
     background: #fbbf24;
     color: #fff;
     font-weight: bold;
     padding: 1.2rem 2.5rem;
     border: none;
     border-radius: 999px;
     font-size: 1.1rem;
     cursor: pointer;
     width: 100%;
     transition: background 0.2s, transform 0.2s;
 }

 .contact-shop-btn:hover {
     background: #fde68a;
     color: #7c4a02;
     transform: scale(1.05);
 }

 /* === Footer Section Styles === */
.footer {
    background: #4b2e05;
    color: #fde68a;
    padding: 3rem 0 2rem 0;
}

.footer-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-flex {
        flex-direction: row;
        align-items: flex-start;
    }
}

.footer-brand {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: auto;
    max-width: 180px;
    width: 100%;
}

.footer-logo-secondary {
    height: auto;
    max-width: 120px;
    width: 100%;
}

.footer-links,
.footer-policies {
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-policies ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-policies a {
    color: #fde68a;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.footer-links a:hover,
.footer-policies a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #a16207;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 1rem;
    color: #fbbf24cc;
}

@media (max-width: 480px) {
    .footer-brand {
        flex-direction: column;
    }

    .footer-logo,
    .footer-logo-secondary {
        max-width: 140px;
    }
}