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

html {
    width: 100%;
    overflow-x: hidden;
}

/* Prevent horizontal scrolling on mobile */
* {
    max-width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 40px;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-center .logo img {
    width: 200px;
    height: auto;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.nav-center .logo:hover img {
    filter: brightness(0.8);
}

@media (max-width: 768px) {
    .nav-center .logo img {
        width: 200px;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #0d0d0d;
    padding: 80px 40px 40px;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 1px solid #333;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: opacity 0.3s ease;
}

.mobile-menu .nav-link:hover {
    opacity: 0.7;
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    background: #ffffff;
    color: #0d0d0d;
    border: 2px solid #ffffff;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 100px;
    justify-content: center;
}

.floating-cart-btn:hover {
    background: #0d0d0d;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-cart-btn .cart-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 22px;
}

.floating-cart-btn .cart-text {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .floating-cart-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        min-width: 90px;
    }

    .floating-cart-btn .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .floating-cart-btn .cart-text {
        font-size: 0.8rem;
    }
}

/* Cart Modal */
.cart-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.cart-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.cart-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.cart-close-btn:hover {
    opacity: 0.7;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    min-height: 200px;
}

.cart-items {
    padding: 25px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.continue-shopping-btn {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
}

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

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #333;
    border-radius: 4px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cart-item-price {
    font-size: 14px;
    opacity: 0.8;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    background: #333;
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background: #555;
}

.quantity-display {
    font-size: 14px;
    min-width: 30px;
    text-align: center;
}

.remove-item-btn {
    background: none;
    color: #ff4444;
    border: none;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
    transition: opacity 0.3s ease;
}

.remove-item-btn:hover {
    opacity: 0.7;
}

.shipping-info {
    margin: 15px 0;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 8px;
}

.shipping-cost {
    padding: 10px 0;
    font-weight: 500;
    font-size: 16px;
}

.shipping-cost.free-shipping {
    color: #28a745;
}

.shipping-reminder {
    background: #1a4d3a;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0 0 0;
    text-align: center;
}

.shipping-reminder p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.shipping-reminder strong {
    color: #28a745;
}

.cart-breakdown {
    padding: 15px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-top: 10px;
}

.cart-breakdown .subtotal-line,
.cart-breakdown .shipping-line,
.cart-breakdown .discount-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
    color: #cccccc;
}

.cart-breakdown .total-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 5px 0;
    border-top: 1px solid #333;
    margin-top: 5px;
    font-size: 16px;
}

.cart-breakdown .discount-line {
    color: #28a745;
}

/* Delivery Section */
.delivery-section {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-section h3 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.delivery-option input[type="radio"] {
    margin: 2px 0 0 0;
    accent-color: #ffffff;
}

.delivery-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-option-content strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.delivery-option-content small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.4;
}

.cart-summary {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #1a1a1a, #111111);
    border-radius: 0 0 12px 12px;
    position: relative;
}

.cart-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-btn {
    width: 100%;
    background: #ffffff;
    color: #0d0d0d;
    border: none;
    padding: 15px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkout-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    background: #666;
    color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.checkout-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    line-height: 1.1;
}

.hero-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.about-description {
    margin-bottom: 50px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.stat span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Products Section */
.products {
    padding: 120px 0;
    background: #0d0d0d;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.product-card {
    background: #1a1a1a;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo img {
    width: 120px;
}

.product-logo h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: -5px;
}

.product-logo span {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.8;
}

.product-info {
    padding: 40px 30px;
}

.product-name {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-align: center;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.product-details:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
}

.detail-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
}

.detail-value {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-price {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 25px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.85rem;
}

.add-to-cart-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
}

.buy-now-btn {
    flex: 1;
    padding: 12px 20px;
    background: #ffffff;
    color: #0d0d0d;
    border: 2px solid #ffffff;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.85rem;
}

.buy-now-btn:hover {
    background: #0d0d0d;
    color: #ffffff;
    border-color: #ffffff;
}

/* Disabled states for buttons */
.add-to-cart-btn:disabled {
    background: transparent;
    color: #666666;
    border-color: #666666;
    cursor: not-allowed;
    opacity: 0.5;
}

.add-to-cart-btn:disabled:hover {
    background: transparent;
    color: #666666;
    border-color: #666666;
    transform: none;
}

.buy-now-btn:disabled {
    background: #666666;
    color: #333333;
    border-color: #666666;
    cursor: not-allowed;
    opacity: 0.5;
}

.buy-now-btn:disabled:hover {
    background: #666666;
    color: #333333;
    border-color: #666666;
    transform: none;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.contact-image {
    position: relative;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay,
.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.contact-form-container {
    background: #111111;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 50px;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    outline: none;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #555;
    background: #222;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
    opacity: 1;
}

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23777" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

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

.form-group input[type="date"] {
    color-scheme: dark;
    position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
    transform: translateY(-2px);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 80px 0 40px;
}

.footer-content {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    width: 200px;
    height: auto;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.footer-logo:hover img {
    filter: brightness(0.8);
}

@media (max-width: 768px) {
    .footer-logo img {
        width: 200px;
    }
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 12px;
    opacity: 0.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: #111111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-rating {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 300;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: #0d0d0d;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-right: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #555;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #ffffff;
    color: #0d0d0d;
    border: 1px solid #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #0d0d0d;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        grid-template-columns: none;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 40px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        gap: 30px;
    }

    .footer-legal {
        text-align: center;
    }

    .cart-modal {
        width: 95%;
        max-height: 90vh;
    }

    .cart-header {
        padding: 20px;
    }

    .cart-items {
        padding: 20px;
    }

    .cart-summary {
        padding: 20px;
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-stats {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-form-container h2 {
        font-size: 2rem;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

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

    .newsletter-form input {
        border-right: 1px solid #333;
    }
}

/* User Info Bar (Above Main Header) */
.user-info-bar {
    background: #111111;
    border-bottom: 1px solid #333;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    margin-bottom: 0;
}

.user-info-bar.show {
    display: block;
}

.user-info-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.user-welcome {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0.8;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-actions a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.user-actions a:hover {
    opacity: 1;
}

.logout-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logout-btn:hover {
    opacity: 1;
}

/* Adjust main navbar when user bar is shown */
.navbar.with-user-bar {
    top: 27px;
}

@media (max-width: 560px) {
    .navbar.with-user-bar {
        top: 39px;
        padding-bottom: 10px;
    }
}

/* Authentication Section (in main nav when not logged in) */
.auth-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.login-link,
.subscribe-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.login-link:hover,
.subscribe-link:hover {
    opacity: 0.7;
}

/* Loyalty Points Section */
.loyalty-points-section {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.loyalty-points-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #28a745, transparent);
    opacity: 0.6;
}

.loyalty-points-section h4 {
    margin-bottom: 15px;
    color: #28a745;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.points-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.refresh-points-btn {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #28a745;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.refresh-points-btn:hover {
    background: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

/* Points Redemption Controls */
.points-redemption {
    margin-top: 15px;
}

.points-redemption label {
    display: block;
    margin-bottom: 10px;
    color: #cccccc;
    font-weight: 500;
    font-size: 0.9rem;
}

.points-redemption input[type="number"] {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.points-redemption input[type="number"]:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.points-slider {
    margin-bottom: 15px;
}

.points-slider input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.points-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.points-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.discount-preview {
    padding: 12px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #28a745;
    font-size: 1.1rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes cartBounce {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3) rotate(-5deg);
    }
    50% {
        transform: scale(1.4) rotate(5deg);
    }
    75% {
        transform: scale(1.2) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Enhanced CTA styles */
.loyalty-cta {
    background: linear-gradient(135deg, #1a4d3a, #28a745);
    border: 2px solid #28a745;
    border-radius: 8px;
    margin: 20px 0;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.loyalty-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
}

.loyalty-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.loyalty-icon {
    font-size: 24px;
    animation: sparkle 2s ease-in-out infinite;
}

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

.loyalty-header h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loyalty-benefits {
    margin-bottom: 25px;
}

.points-rate {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.redemption-rate {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.loyalty-signup-btn {
    display: inline-block;
    background: #ffffff;
    color: #0d0d0d;
    border: 2px solid #ffffff;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.loyalty-signup-btn:hover {
    background: #0d0d0d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.loyalty-points-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.loyalty-points-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.points-balance {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.4;
}

.loyalty-redemption {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.points-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.points-input-group label {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 1px;
    min-width: 100px;
    line-height: 1.4;
}

.points-input {
    flex: 1;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.points-input:focus {
    outline: none;
    border-color: #555;
}

.points-apply-btn {
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.points-apply-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
}

.points-apply-btn:disabled {
    background: transparent;
    color: #666;
    border-color: #666;
    cursor: not-allowed;
}

.points-apply-btn:disabled:hover {
    background: transparent;
    color: #666;
}

.points-info {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.7;
    line-height: 1.6;
    font-weight: 300;
}

.points-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

/* Login Required Message */
.login-required-message {
    background: #1a4d3a;
    border: 1px solid #28a745;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.login-required-message p {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.login-required-message .login-link {
    display: inline-block;
    margin-top: 5px;
}

/* Mobile Responsive for Auth and Loyalty */
@media (max-width: 768px) {
    .user-info-container {
        padding: 0 20px;
    }

    .user-welcome {
        font-size: 10px;
    }

    .user-actions {
        gap: 15px;
    }

    .user-actions a,
    .logout-btn {
        font-size: 10px;
    }

    .auth-section {
        gap: 15px;
    }

    .login-link,
    .subscribe-link {
        font-size: 11px;
    }

    .loyalty-points-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .points-input-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .points-input-group label {
        min-width: auto;
    }

    .points-input {
        width: 100%;
    }
}
