:root {
    --primary: #b68d40;
    --primary-light: #d4b483;
    --primary-dark: #8a6c2f;
    --secondary: #f9f5eb;
    --light: #fffaf0;
    --dark: #333;
    --gray: #777;
    --accent: #c5a880;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --radius: 8px;
    --section-padding: 4rem 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Contact Bar */
.top-contact-bar {
    background: var(--primary-dark);
    color: white;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

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

.contact-numbers a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-numbers a:hover {
    color: var(--secondary);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--secondary), #f6eecf);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

nav {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

.verify-btn {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.verify-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cart-icon {
    position: relative;
    font-size: 1.4rem;
    color: var(--primary);
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Fixed Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: rgba(249, 245, 235, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    flex-direction: column;
    padding: 80px 25px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.08);
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(182, 141, 64, 0.15);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav a::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
}

.mobile-nav a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.mobile-verify-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 1.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    width: 100%;
}

.mobile-verify-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

#closeMenu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
    z-index: 2001;
}

#closeMenu:hover {
    transform: rotate(90deg);
}

/* Overlay for background dimming */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
}

.nav-overlay.active {
    display: block;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.cart-header h3 {
    color: var(--primary);
    font-size: 1.4rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary);
    color: white;
}

.cart-item-quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    transition: var(--transition);
}

.remove-item:hover {
    color: #c0392b;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/*
STYLES FOR THE CART SHIPPING FORM (NEW)
*/
.cart-footer .shipping-form {
    padding: 0 5px 15px 5px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.cart-footer .shipping-form h4 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.1rem;
}
.shipping-form input[type="text"],
.shipping-form input[type="tel"],
.shipping-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
}
.shipping-form textarea {
    resize: vertical;
}
/*
END OF CART SHIPPING FORM STYLES
*/

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ddd;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 246, 216, 0.9), rgba(255, 246, 216, 0.95)), 
                url('https://images.unsplash.com/photo-1526947425960-945c6e72858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: var(--section-padding);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    color: #444;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(194, 152, 53, 0.2);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(194, 152, 53, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(194, 152, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 152, 53, 0); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* Product Section */
.product-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.product-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    perspective: 1000px;
}

.product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transform: rotateY(-5deg);
    transition: var(--transition);
    border: 8px solid white;
}

.product-image-container:hover .product-image {
    transform: rotateY(0deg);
}

.product-details {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.product-details h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.product-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.product-info {
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    margin-bottom: 0.8rem;
}

.info-label {
    font-weight: 600;
    min-width: 160px;
    color: #555;
}

.info-value {
    color: var(--dark);
}

.key-benefits {
    margin: 2rem 0;
}

.key-benefits h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.benefit-card {
    background: var(--secondary);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.price-section {
    margin: 1.5rem 0;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.2rem;
    margin-left: 10px;
}

.discount {
    color: #4CAF50;
    font-weight: 600;
    margin-left: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 1.5rem 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    padding: 5px 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary);
    color: white;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.buy-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.buy-now-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Description Section */
.description-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--primary);
}

.description-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.description-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.description-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.description-text p {
    margin-bottom: 1.2rem;
}

.how-to-use {
    background: var(--secondary);
    padding: 1.8rem;
    border-radius: 10px;
}

.how-to-use h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.steps {
    list-style: none;
    counter-reset: step-counter;
}

.steps li {
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
}

.steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* About Section */
.about-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--secondary), #f6eecf);
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.about-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.mission-values {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.8rem;
    border-radius: 10px;
}

.mission-values h3 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
}

.stars {
    color: #FFC107;
    margin-top: 0.5rem;
}

/* Soap Section */
.soap-section {
    background: linear-gradient(135deg, var(--secondary), #f6eecf);
    padding: var(--section-padding);
    margin: 4rem 0;
}

.soap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.soap-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.soap-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 8px solid white;
    max-height: 400px;
    object-fit: cover;
}

.soap-details {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.soap-details h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.soap-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.soap-benefits {
    margin: 1.5rem 0;
}

.soap-benefits h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* REVIEWS SECTION */
.reviews-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.review-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(182, 141, 64, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #FFC107;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.review-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.review-date {
    color: #777;
    font-size: 0.9rem;
}

.review-stars {
    color: #FFC107;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    min-width: 180px;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: var(--primary-dark);
}

.icon {
    font-size: 1.3rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary), #f6eecf);
    padding: 4rem 5% 2rem;
    color: #555;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(194, 152, 53, 0.2);
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* Developer credit */
.developer-credit {
    margin-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    padding-top: 15px;
    border-top: 1px dashed rgba(182, 141, 64, 0.2);
}

.developer-credit a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.developer-credit a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.developer-credit .zomaxa-logo {
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Contact item links */
.contact-item a {
    color: #555;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- IMPROVED RESPONSIVE STYLES --- */

@media (max-width: 900px) {
    .product-section {
        flex-direction: column;
    }
    
    .soap-container {
        flex-direction: column;
    }
    
    .hero h2 {
        font-size: 2.3rem;
    }
    
    .desktop-verify {
        display: none;
    }
    
    .mobile-verify {
        display: block;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .review-form {
        order: 2;
    }
    
    .reviews-list {
        order: 1;
        max-height: 450px; 
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 2.5rem 5%; 
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .product-section, .description-section, .about-section, .soap-section, .reviews-section, .testimonials {
        padding: 2.5rem 5%;
        margin: 2rem 0;
    }

    .product-details, .description-section, .about-section, .soap-details {
        padding: 1.5rem;
    }
    
    .mobile-verify-btn {
        display: flex;
    }
    
    .top-contact-bar {
        justify-content: center;
    }
    
    .contact-numbers {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .product-details h3, .soap-details h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 94%;
    }

    .hero h2 {
        font-size: 1.8rem;
    }
    
    .cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .float-btn {
        min-width: auto;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .float-btn span {
        display: none;
    }
    
    .mobile-nav a {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .mobile-verify-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-numbers {
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .description-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }

    .product-details, .description-section, .about-section, .soap-details, .review-form, .testimonial-card {
        padding: 1.2rem;
    }

    .hero {
        padding: 2rem 5%;
    }

    .product-section, .description-section, .about-section, .soap-section, .reviews-section, .testimonials {
        padding: 2rem 5%;
        margin: 1.5rem 0;
    }
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(150%);
    transition: transform 0.4s ease;
}

.success-message.show {
    transform: translateX(0);
}

/* Colored buttons for WhatsApp and Call */
.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.whatsapp:hover {
    background: #128C7E;
}

.float-btn.call {
    background: #E53935;
}

.float-btn.call:hover {
    background: #C62828;
}

/* --- Error Message Style (NEW) --- */
.success-message.error {
    background: #e74c3c; /* Red color for errors */
}

/*
STYLES FOR THE CART SHIPPING FORM (NEW)
This is the correct CSS for your design.
The modal CSS has been removed.
*/
.cart-footer .shipping-form {
    padding: 0 5px 15px 5px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.cart-footer .shipping-form h4 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.1rem;
}
.shipping-form input[type="text"],
.shipping-form input[type="tel"],
.shipping-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
}
.shipping-form textarea {
    resize: vertical;
}
/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900; /* <-- This is the fix. Changed from 9999. */
}