        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
        }

        body {
            font-family: "Montserrat", sans-serif;
            color: #000;
            background-color: #fff;
            overflow-x: hidden;
        }

        #app {
            width: 100%;
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes scaleIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .page {
            display: none;
            width: 100%;
        }

        .page.active {
            display: block;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid #eee;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .logo {
            font-size: 24px;
            font-weight: 900;
            color: #000;
            letter-spacing: 2px;
            animation: slideInLeft 0.6s ease;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
            animation: slideInRight 0.6s ease;
        }

        .nav-item {
            font-size: 14px;
            font-weight: 600;
            color: #000;
            text-decoration: none;
            cursor: pointer;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #A82323;
            transition: width 0.3s ease;
        }

        .nav-item:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .icon-btn {
            font-size: 20px;
            background: none;
            border: none;
            cursor: pointer;
            color: #000;
            transition: color 0.3s ease;
            position: relative;
        }

        .icon-btn:hover {
            color: #A82323;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #A82323;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        .hero {
            margin-top: 70px;
            display: flex;
            height: 600px;
            overflow: hidden;
            position: relative;
        }

        .hero-left {
            background: #A82323;
            width: 40%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            color: white;
            position: relative;
            z-index: 2;
            animation: slideInLeft 0.8s ease;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        }

        .hero-heading {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subheading {
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .hero-btn {
            background: white;
            color: #A82323;
            border: none;
            padding: 15px 40px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s ease;
            font-family: "Montserrat", sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .hero-right {
            width: 60%;
            position: relative;
            background: white;
            overflow: hidden;
            animation: slideInRight 0.8s ease;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: float 3s ease-in-out infinite;
        }

        section {
            width: 100%;
            padding: 100px 60px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 60px;
            text-align: center;
            animation: slideInUp 0.8s ease;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            animation: slideInUp 0.8s ease 0.2s backwards;
        }

        .product-card {
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            animation: scaleIn 0.6s ease;
        }

        .product-card.red-bg {
            background: #A82323;
            color: white;
        }

        .product-card.white-bg {
            background: white;
            border: 1px solid #eee;
            color: #000;
        }

        .product-card.black-bg {
            background: #000;
            color: white;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .product-info {
            padding: 30px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .product-description {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 15px;
            opacity: 0.85;
        }

        .product-price {
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .product-card.red-bg .shop-btn {
            background: white;
            color: #A82323;
        }

        .product-card.white-bg .shop-btn {
            background: #A82323;
            color: white;
        }

        .product-card.black-bg .shop-btn {
            background: white;
            color: #000;
        }

        .shop-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .shop-btn:hover {
            transform: scale(1.05);
        }

        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            animation: slideInUp 0.8s ease;
        }

        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            animation: slideInLeft 0.8s ease 0.2s backwards;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content {
            animation: slideInRight 0.8s ease 0.2s backwards;
        }

        .about-content h2 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #333;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 40px 0;
        }

        .feature {
            padding: 20px;
            background: #f5f5f5;
            border-radius: 8px;
        }

        .feature h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #A82323;
        }

        .feature p {
            font-size: 13px;
            line-height: 1.6;
            color: #666;
        }

        .about-btn {
            background: #A82323;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .about-btn:hover {
            background: #8a1d1d;
            transform: translateY(-3px);
        }

        .blog-section {
            background: #A82323;
            color: white;
        }

        .blog-carousel {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            animation: slideInUp 0.8s ease;
        }

        .blog-carousel::-webkit-scrollbar {
            height: 8px;
        }

        .blog-carousel::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.1);
        }

        .blog-carousel::-webkit-scrollbar-thumb {
            background: white;
            border-radius: 4px;
        }

        .blog-card {
            min-width: 350px;
            background: white;
            color: #000;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #A82323;
        }

        .blog-content p {
            font-size: 13px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }

        .blog-link {
            color: #A82323;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonials-section {
            background: white;
            text-align: center;
        }

        .testimonial-slider {
            max-width: 700px;
            margin: 0 auto;
            animation: slideInUp 0.8s ease;
        }

        .testimonial-quote {
            font-size: 48px;
            color: #A82323;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #333;
        }

        .testimonial-author {
            font-size: 16px;
            font-weight: 700;
            color: #A82323;
            margin-bottom: 5px;
        }

        .testimonial-role {
            font-size: 13px;
            color: #999;
        }

        .shop-header {
            background: linear-gradient(135deg, #A82323 0%, #8a1d1d 100%);
            color: white;
            padding: 100px 60px !important;
        }

        .shop-header h1 {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .shop-header p {
            font-size: 18px;
            font-weight: 300;
            opacity: 0.9;
        }

        .filters {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease;
        }

        .filter-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid #A82323;
            color: #A82323;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #A82323;
            color: white;
        }

        .shop-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            animation: slideInUp 0.8s ease;
        }

        .shop-item {
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .shop-item:hover {
            box-shadow: 0 15px 40px rgba(168, 35, 35, 0.15);
            transform: translateY(-10px);
        }

        .shop-item-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .shop-item-info {
            padding: 20px;
        }

        .shop-item-name {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .shop-item-description {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .shop-item-price {
            font-size: 18px;
            font-weight: 900;
            color: #A82323;
            margin-bottom: 15px;
        }

        .shop-item-btn {
            width: 100%;
            padding: 10px;
            background: #A82323;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .shop-item-btn:hover {
            background: #8a1d1d;
            transform: scale(1.05);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 8px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: scaleIn 0.4s ease;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            border: 2px solid #A82323;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            color: #A82323;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            font-weight: bold;
        }

        .modal-close:hover {
            background: #A82323;
            color: white;
        }

        .modal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px;
        }

        .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        .modal-details h2 {
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .modal-details p {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .modal-specs {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .modal-spec-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 13px;
        }

        .modal-price {
            font-size: 32px;
            font-weight: 900;
            color: #A82323;
            margin: 20px 0;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .modal-btn {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .modal-btn.add {
            background: #A82323;
            color: white;
        }

        .modal-btn.add:hover {
            background: #8a1d1d;
        }

        .modal-btn.close {
            background: #f5f5f5;
            color: #000;
        }

        .modal-btn.close:hover {
            background: #eee;
        }

        .auth-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-content {
            background: white;
            border-radius: 8px;
            width: 100%;
            max-width: 450px;
            padding: 50px;
            animation: scaleIn 0.4s ease;
            position: relative;
        }

        .auth-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
        }

        .auth-title {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #A82323;
        }

        .form-submit {
            width: 100%;
            padding: 15px;
            background: #A82323;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .form-submit:hover {
            background: #8a1d1d;
        }

        .auth-toggle {
            text-align: center;
            margin-top: 20px;
            font-size: 13px;
        }

        .auth-toggle a {
            color: #A82323;
            cursor: pointer;
            font-weight: 700;
            text-decoration: none;
        }

        .blog-header {
            background: #000;
            color: white;
            padding: 100px 60px !important;
        }

        .blog-header h1 {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            animation: slideInUp 0.8s ease;
        }

        .blog-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .blog-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .blog-item-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .blog-item-info {
            padding: 25px;
        }

        .blog-item-date {
            font-size: 12px;
            color: #A82323;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .blog-item-title {
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 12px;
            color: #000;
        }

        .blog-item-excerpt {
            font-size: 13px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }

        .blog-item-link {
            color: #A82323;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-header {
            background: linear-gradient(135deg, #000 0%, #333 100%);
            color: white;
            padding: 100px 60px !important;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            animation: slideInUp 0.8s ease;
        }

        .contact-info h3 {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 30px;
        }

        .contact-item {
            margin-bottom: 30px;
        }

        .contact-item h4 {
            font-size: 15px;
            font-weight: 700;
            color: #A82323;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 8px;
        }

        .contact-form h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 30px;
        }

        footer {
            background: #000;
            color: white;
            padding: 80px 60px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-size: 16px;
            font-weight: 900;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 13px;
            margin-bottom: 15px;
            display: block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #A82323;
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: white;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: bold;
        }

        .social-icon:hover {
            background: #A82323;
            color: white;
            transform: scale(1.15);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 40px;
            text-align: center;
            font-size: 13px;
            color: rgba(255,255,255,0.6);
        }

        .footer-accent {
            background: #A82323;
            padding: 20px 60px;
            text-align: center;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #A82323;
            color: white;
            padding: 15px 30px;
            border-radius: 4px;
            z-index: 3000;
            animation: slideInUp 0.4s ease;
            font-weight: 600;
        }

        .content-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }

        .content-modal.active {
            display: flex;
        }

        .content-modal-content {
            background: white;
            border-radius: 8px;
            width: 100%;
            max-width: 700px;
            max-height: 85vh;
            overflow-y: auto;
            animation: scaleIn 0.4s ease;
            position: relative;
        }

        .content-modal-header {
            padding: 30px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: white;
            z-index: 10;
        }

        .content-modal-header h2 {
            font-size: 28px;
            font-weight: 900;
        }

        .content-modal-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }

        .content-modal-close:hover {
            color: #A82323;
        }

        .content-modal-body {
            padding: 30px;
            font-size: 14px;
            line-height: 1.8;
            color: #333;
        }

        .content-modal-body h3 {
            font-size: 18px;
            font-weight: 900;
            margin: 25px 0 12px;
            color: #A82323;
        }

        .content-modal-body h4 {
            font-size: 15px;
            font-weight: 700;
            margin: 18px 0 10px;
        }

        .content-modal-body p {
            margin-bottom: 15px;
        }

        .content-modal-body ul,
        .content-modal-body ol {
            margin: 15px 0 15px 30px;
        }

        .content-modal-body li {
            margin-bottom: 8px;
        }

        .newsletter-section {
            background: #000;
            color: white;
            padding: 50px 60px;
            margin-top: 80px;
        }

        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .newsletter-title {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 15px;
        }

        .newsletter-desc {
            font-size: 14px;
            margin-bottom: 25px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-input-group {
            display: flex;
            gap: 10px;
        }

        .newsletter-input-group input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: "Montserrat", sans-serif;
            font-size: 14px;
        }

        .newsletter-input-group button {
            padding: 12px 30px;
            background: #A82323;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-input-group button:hover {
            background: #8a1d1d;
            transform: translateY(-2px);
        }

        .newsletter-input-group button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .newsletter-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 12px;
        }

        .newsletter-checkbox input {
            width: 16px;
            height: 16px;
            cursor: pointer;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .newsletter-checkbox label {
            cursor: pointer;
            line-height: 1.5;
        }

        .newsletter-message {
            padding: 12px;
            border-radius: 4px;
            font-size: 13px;
            display: none;
        }

        .newsletter-message.success {
            background: #d4edda;
            color: #155724;
            display: block;
        }

        .newsletter-message.error {
            background: #f8d7da;
            color: #721c24;
            display: block;
        }

        .about-header {
            background: linear-gradient(135deg, #A82323 0%, #8a1d1d 100%);
            color: white;
            padding: 100px 60px !important;
        }

        .about-header h1 {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .about-content-full {
            max-width: 900px;
            margin: 0 auto;
            animation: slideInUp 0.8s ease;
        }

        .about-content-full h2 {
            font-size: 36px;
            font-weight: 900;
            margin: 40px 0 20px;
        }

        .about-content-full p {
            font-size: 15px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .about-content-full ul {
            margin: 20px 0 20px 40px;
            font-size: 15px;
            line-height: 1.8;
            color: #333;
        }

        .about-content-full li {
            margin-bottom: 10px;
        }

        @media (max-width: 1200px) {
            header {
                padding: 15px 40px;
            }

            section {
                padding: 80px 40px;
            }

            footer {
                padding: 60px 40px 40px;
            }

            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .shop-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .shop-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-heading {
                font-size: 42px;
            }

            section {
                padding: 70px 40px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 20px;
                flex-direction: row;
                justify-content: space-between;
            }

            .logo {
                font-size: 18px;
                letter-spacing: 1px;
            }

            .nav-menu {
                display: none;
            }

            .nav-icons {
                gap: 15px;
            }

            .hero {
                height: auto;
                flex-direction: column;
                margin-top: 60px;
            }

            .hero-left {
                width: 100%;
                clip-path: none;
                padding: 30px 20px;
            }

            .hero-heading {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .hero-subheading {
                font-size: 15px;
                margin-bottom: 20px;
            }

            .hero-right {
                width: 100%;
                height: 250px;
            }

            section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .featured-grid,
            .shop-grid,
            .blog-grid,
            .about-section,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            footer {
                padding: 40px 20px 20px;
            }

            .modal-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px;
            }

            .modal-image {
                height: 250px;
            }

            .modal-details h2 {
                font-size: 24px;
            }

            .modal-price {
                font-size: 24px;
            }

            .auth-content {
                padding: 25px;
                max-width: 90%;
            }

            .auth-title {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .about-content h2 {
                font-size: 28px;
            }

            .shop-header h1 {
                font-size: 36px;
            }

            .contact-header h1 {
                font-size: 36px;
            }

            .blog-header h1 {
                font-size: 36px;
            }

            .about-header h1 {
                font-size: 36px;
            }

            .filters {
                flex-wrap: wrap;
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 15px;
                font-size: 11px;
            }

            .shop-item-image {
                height: 200px;
            }

            .blog-image {
                height: 180px;
            }

            .blog-carousel {
                gap: 15px;
            }

            .blog-card {
                min-width: 280px;
            }

            .toast {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 12px;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .feature {
                padding: 15px;
            }

            .modal-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .modal-btn {
                padding: 12px;
            }

            .contact-form {
                padding: 25px;
            }

            .product-image {
                height: 220px;
            }

            .product-info {
                padding: 20px;
            }

            .icon-btn {
                font-size: 18px;
            }

            .newsletter-section {
                padding: 40px 20px;
            }

            .newsletter-input-group {
                flex-direction: column;
            }

            .newsletter-input-group button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 10px 15px;
            }

            .logo {
                font-size: 14px;
            }

            .hero-left {
                padding: 20px 15px;
            }

            .hero-heading {
                font-size: 24px;
            }

            .hero-subheading {
                font-size: 13px;
            }

            .hero-btn {
                padding: 12px 25px;
                font-size: 12px;
            }

            .hero-right {
                height: 200px;
            }

            section {
                padding: 35px 15px;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .product-card {
                margin-bottom: 15px;
            }

            .product-image {
                height: 180px;
            }

            .modal-content {
                max-width: 95%;
                max-height: 95vh;
            }

            .modal-grid {
                padding: 15px;
            }

            .modal-image {
                height: 200px;
            }

            .modal-details h2 {
                font-size: 18px;
            }

            .auth-content {
                padding: 20px;
                max-width: 95%;
            }

            .form-group input,
            .form-group textarea {
                font-size: 14px;
                padding: 10px;
            }

            footer {
                padding: 30px 15px 15px;
            }

            .footer-col h3 {
                font-size: 14px;
            }

            .footer-link {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .about-content h2 {
                font-size: 20px;
            }

            .about-content p {
                font-size: 13px;
            }

            .blog-card {
                min-width: 100%;
            }

            .blog-carousel {
                padding: 10px 0;
            }

            .testimonial-quote {
                font-size: 32px;
            }

            .testimonial-text {
                font-size: 14px;
            }

            .shop-item-name {
                font-size: 13px;
            }

            .shop-item-price {
                font-size: 16px;
            }

            .shop-item-btn {
                font-size: 10px;
                padding: 8px;
            }

            .content-modal-header h2 {
                font-size: 20px;
            }

            .newsletter-title {
                font-size: 22px;
            }

            .newsletter-section {
                padding: 30px 15px;
            }
        }

        /* Container Styling */
.newsletter-section {
    background-color: #3663bd; /* Tailwind gray-100 */
}

/* Card Styling */
.subscribe-form, .unsubscribe-form {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form:hover, .unsubscribe-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Form Inputs */
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db; /* Tailwind gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    margin-bottom: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus {
    border-color: #16a34a; /* Tailwind green-700 */
    box-shadow: 0 0 0 3px rgba(22,163,74,0.2);
}

/* Checkbox */
.newsletter-form input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Buttons */
.newsletter-form button {
    background-color: #16a34a; /* Tailwind green-700 */
    color: black;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #15803d; /* Slightly darker green */
}

/* Unsubscribe button color */
.unsubscribe-form button {
    background-color: #dc2626; /* Tailwind red-600 */
}

.unsubscribe-form button:hover {
    background-color: #b91c1c; /* Darker red */
}

/* Messages */
#newsletterMessage, #unsubscribeMessage {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (min-width: 1024px) {
    .newsletter-container {
        display: flex;
        gap: 2rem;
    }

    .subscribe-form, .unsubscribe-form {
        flex: 1;
    }
}
