/* 
Color Palette:
- Dark Base (text, backgrounds, shadows): #1A1A1A (Charcoal Black)
- Bold Accent (buttons, links): #FFD600 (Hazard Yellow)
- Patriotic Red (highlights, hover): #9C1F2F (Flag Red)
- Vintage Cream (backgrounds, headers): #F5E8C3 (Aged Bone White)
- Steel Grey (subtext, borders): #4D4D4D (Industrial Grey)
*/

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

body {
    font-family: 'Roboto', sans-serif;
    color: #1A1A1A;
    background: #F5E8C3;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

a:hover {
    color: #9C1F2F;
}

ul {
    list-style: none;
}

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

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

.underline {
    height: 4px;
    width: 80px;
    background: #9C1F2F;
    margin: 0 auto;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #FFD600;
    color: #1A1A1A;
    border: 2px solid #FFD600;
}

.btn-primary:hover {
    background: #9C1F2F;
    border-color: #9C1F2F;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
}

.btn-secondary:hover {
    background: #1A1A1A;
    color: white;
}

/* Header Styles */
header {
    background: #1A1A1A;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: white;
    font-weight: 500;
    position: relative;
}

.main-nav a:hover {
    color: #FFD600;
}

/* Add specific styling for the Shop Now button in nav */
.main-nav a.btn-primary {
    color: #1A1A1A;
    font-weight: 700;
}

.main-nav a.btn-primary:hover {
    color: white;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFD600;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: url(../images/hero-bg.jpg) no-repeat center center/cover;
    position: relative;
    color: white;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-content .btn-primary {
    margin-right: 15px;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #F5E8C3;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/texture.png);
    opacity: 0.05;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    padding-right: 50px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

/* Increase font size in the About section */
.about-text h3 {
    font-size: 2rem; /* Increased from 1.75rem */
}

.about-text p {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 20px; /* Slightly more spacing between paragraphs */
    line-height: 1.7;
}

.feature-list {
    margin-top: 25px;
    list-style-type: none; /* Changed from disc to none */
    padding-left: 0; /* Removed left padding since we don't need space for bullets */
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1.0625rem; /* 17px */
    position: relative;
    padding-left: 0; /* Removed padding-left */
}

/* Remove the ::before pseudo-element that creates bullets */
.feature-list li::before {
    display: none; /* Hide the bullet points */
}

.feature-list i {
    color: #9C1F2F;
    margin-right: 12px;
    font-size: 1.25rem; /* Slightly larger icons */
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    background: #F5E8C3;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: #9C1F2F;
    margin-bottom: 20px;
}

/* How To Use Section */
.how-to-section {
    padding: 80px 0;
    background: #F5E8C3;
    position: relative;
}

.how-to-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/texture.png);
    opacity: 0.05;
    z-index: 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    padding: 20px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #FFD600;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #FFD600;
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonial-slider {
    position: relative;
    min-height: 200px; /* Ensure slider has minimum height */
}

.testimonial {
    padding: 30px;
    background: #F5E8C3;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 800px;
    display: none; /* Hide all testimonials by default */
    transition: opacity 0.3s ease;
}

/* First testimonial visible by default until JS loads */
.testimonial:first-child {
    display: block;
}

.stars {
    color: #FFD600;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.customer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.customer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.customer-name {
    font-weight: 700;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: #FFD600;
    color: #1A1A1A;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: #9C1F2F;
    color: white;
}

/* Shop Section */
.shop-section {
    padding: 80px 0;
    background: #F5E8C3;
    position: relative;
}

.shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/texture.png);
    opacity: 0.05;
    z-index: 0;
}

.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 300px;
    transition: transform 0.3s ease;
    position: relative;
}

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

.product-card.featured {
    border: 2px solid #FFD600;
    transform: scale(1.05);
}

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

.best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD600;
    color: #1A1A1A;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 0.8rem;
}

.product-image {
    margin: 0 auto 20px;
    height: 200px;
    object-fit: contain;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: #9C1F2F;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    background: white;
    padding: 30px; /* Increased padding from 20px to 30px */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-badge {
    width: 120px; /* Increased from 80px to 120px */
    margin-right: 30px; /* Increased spacing from 20px to 30px */
}

/* New style for guarantee text */
.satisfaction-guarantee p {
    font-size: 1.25rem; /* Increased text size */
    line-height: 1.5;
    font-weight: 500; /* Added slightly bolder weight */
    max-width: 600px; /* Control text width */
}

/* Shopping Cart Styles */
.cart-button {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 214, 0, 0.3);
    color: #FFD600;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hide by default until items are added */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.cart-button.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cart-icon-text {
    font-size: 1rem;
    margin-left: 5px;
    font-weight: 500;
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FFD600;
    color: #1A1A1A;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.cart-counter.active {
    opacity: 1;
    transform: scale(1);
}

#cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #FFD600;
    color: #1A1A1A;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1001;
}

#cart-notification.show {
    transform: translateX(0);
}

#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-end;
}

#cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: white;
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

#cart-overlay.show .cart-panel {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cart-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1A1A1A;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
}

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

.cart-item-details h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.cart-item-price {
    color: #9C1F2F;
    font-weight: bold;
    margin: 0 0 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.quantity-controls span {
    margin: 0 10px;
    font-weight: bold;
}

.remove-item-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4D4D4D;
    padding: 0 10px;
}

.cart-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-top: 1px solid #eee;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-size: 1.25rem;
    font-weight: bold;
    color: #9C1F2F;
}

.empty-cart {
    text-align: center;
    padding: 30px 0;
    color: #4D4D4D;
    font-style: italic;
}

#checkout-btn {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

#checkout-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.order-success {
    text-align: center;
    padding: 40px 0;
}

.order-success i {
    color: #28a745;
    font-size: 4rem;
    margin-bottom: 20px;
}

#paypal-button-container {
    margin-top: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
}

#paypal-button-container.highlight {
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.7);
    transform: scale(1.03);
}

/* PayPal button styling */
.checkout-label {
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
}

/* Discount code styles */
.discount-code-container {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px dotted #ddd;
    border-bottom: 1px dotted #ddd;
}

.discount-input {
    display: flex;
    margin-bottom: 5px;
}

.discount-input input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.discount-input button {
    padding: 8px 12px;
    background-color: #666;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.discount-input button:hover {
    background-color: #555;
}

#discount-message {
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

#discount-message .success {
    color: #2ecc71;
}

#discount-message .error {
    color: #e74c3c;
}

#discount-line {
    color: #2ecc71;
    font-weight: bold;
}

/* Footer */
footer {
    background: #1A1A1A;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links, .footer-support {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-newsletter {
    flex: 2;
    min-width: 300px;
}

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFD600;
}

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

footer a {
    color: white;
    opacity: 0.8;
}

footer a:hover {
    color: #FFD600;
    opacity: 1;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

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

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    padding: 0 15px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FFD600;
    color: #1A1A1A;
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* When parent hovers, change SVG fill color */
.social-icons a:hover .social-icon {
    filter: brightness(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Promotional Popup Styles */
.promo-popup-overlay {
    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: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.promo-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    background: #F5E8C3;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 3px solid #FFD600;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    margin: 5vh 0;
}

.promo-popup-overlay.show .promo-popup {
    transform: scale(1);
}

.promo-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #1A1A1A;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.promo-close-btn:hover {
    background: #9C1F2F;
    color: white;
    transform: rotate(90deg);
}

.promo-content {
    padding: 30px;
    text-align: center;
}

.promo-header {
    margin-bottom: 25px;
    position: relative;
}

.promo-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #1A1A1A;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9C1F2F, #FFD600);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-body {
    color: #1A1A1A;
}

.promo-body p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-code-section {
    background: white;
    border: 2px dashed #FFD600;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
}

.promo-code-label {
    display: block;
    font-size: 0.9rem;
    color: #4D4D4D;
    margin-bottom: 10px;
    font-weight: 500;
}

.promo-code {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #9C1F2F;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 10px;
    background: #F5E8C3;
    border-radius: 8px;
    border: 2px solid #FFD600;
    display: inline-block;
    min-width: 200px;
}

.copy-code-btn {
    background: #FFD600;
    color: #1A1A1A;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-code-btn:hover {
    background: #9C1F2F;
    color: white;
    transform: translateY(-2px);
}

.copy-code-btn.copied {
    background: #28a745;
    color: white;
}

.promo-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-cta {
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
    min-width: 140px;
}

.promo-later {
    padding: 12px 30px !important;
    font-size: 1rem !important;
    min-width: 140px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-popup {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .promo-content {
        padding: 25px 20px;
    }
    
    .promo-header h2 {
        font-size: 1.8rem;
    }
    
    .promo-code {
        font-size: 1.4rem;
        letter-spacing: 2px;
        min-width: 150px;
    }
    
    .promo-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-cta,
    .promo-later {
        width: 100%;
        max-width: 200px;
    }
    
    .promo-image {
        max-width: 300px;
    }
    
    .promo-image-container.large .promo-image {
        max-width: 100%;
    }
    
    .promo-image-container.small .promo-image {
        max-width: 150px;
    }
}

/* Animation for popup entrance */
@keyframes slideInUp {
    from {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.promo-popup-overlay.show .promo-popup {
    animation: slideInUp 0.4s ease-out;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content, .about-image {
        padding-right: 30px;
    }
    
    .steps {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 1 0 45%;
        margin-bottom: 30px;
    }
    
    .step::after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 1.0625rem; /* Slightly smaller on mobile */
    }
    
    .feature-list li {
        font-size: 1rem; /* Standard size on mobile */
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        z-index: 1001;
        transition: opacity 0.3s ease;
    }
    
    .main-nav.show {
        display: flex;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .main-nav a {
        font-size: 1.25rem;
        padding: 10px;
    }
    
    .hamburger {
        display: flex;
        margin-left: 15px;
        z-index: 1002; /* Ensure hamburger is above the nav menu */
        position: relative; /* Add positioning context */
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hide cart text on mobile, show only icon */
    .cart-icon-text {
        display: none;
    }
    
    .cart-panel {
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    /* Add a visible close button in the mobile menu */
    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1003;
        display: none;
    }
    
    .mobile-close-btn.show {
        display: block;
    }
}

/* Mobile cart button styles - make sure these are outside any media query */
.mobile-cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: #1A1A1A;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    color: #FFD600;
    font-size: 1.8rem;
    cursor: pointer;
    border: 1px solid rgba(255, 214, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.mobile-cart-button.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    display: flex;
}

/* Hide cart text in mobile cart button */
.mobile-cart-button .cart-icon-text {
    display: none;
}

.promo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.promo-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.promo-image-container.small .promo-image {
    max-width: 200px;
}

.promo-image-container.large .promo-image {
    max-width: 100%;
}
