/** Shopify CDN: Minification failed

Line 1304:16 Expected ":"

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

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #60a5fa;
    --primary-green: #059669;
    --dark-green: #047857;
    --light-green: #34d399;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    background:#f9fafb;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.nav-brand h2 {
    color: var(--primary-blue)! important ;
    font-size: 1.5rem! important ;
}

.nav-brand span {
    color: var(--primary-green)! important ;
}
ul.list-menu.list-menu--inline span:hover {
    color: #2563eb !important;
}
/* Hero Section */
.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: calc(3.5rem * 1.6);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}
.hero-title .gradient-text{display: block;}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}
/* Force display block for decorative elements */
.floating-element,
.bg-element {
    display: block !important;
}

/* Specific styling for floating elements */
.floating-element.element-1,
.floating-element.element-2,
.floating-element.element-3 {
    display: block !important;
}

/* Specific styling for background elements */
.bg-element.bg-element-1,
.bg-element.bg-element-2 {
    display: block !important;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat h3 {
    font-size: 3.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-600);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.8s both;
}

.pump-3d {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.pump-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(15deg) rotateX(5deg);
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}
.footer-section p{padding-right:105px;}
.pump-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.3));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.7;
}

.element-1 {
    background: linear-gradient(45deg, var(--primary-blue), var(--light-blue));
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.element-2 {
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    top: 70%;
    right: 10%;
    animation: float 5s ease-in-out infinite reverse;
}

.element-3 {
    background: linear-gradient(45deg, var(--light-blue), var(--light-green));
    top: 80%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

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

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 10%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    bottom: 10%;
    left: 10%;
    animation: rotate 15s linear infinite reverse;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem !important;
}
.shopify-section.shopify-section-group-header-group.section-header.shopify-section-header-sticky{
    margin-bottom:0 !important;
}

.nav-brand h2 {
    font-size: 2.4rem !important;
}
#products .section-header h2{
    font-size: 40px;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}
#testimonials .section-header h2{
    font-size: 40px;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}
.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 9.6rem 0;
    background: var(--gray-50);
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: translateZ(0);
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: auto;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.product-info {
    padding: 1.5rem !important;
}

.product-info h3, .product-info h3 a{
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
    text-decoration:none;
}

.product-info p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 14px;
    color: var(--gray-600);
    letter-spacing: 0;
}

.product-features i {
    color: var(--primary-green);
    font-size: 11px;
}

.product-price a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-decoration:none;
}

.product-price .price {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0;
}

.original-price {
    font-size: 1rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-btn {
    width: 100%;
    justify-content: center;
}

/* Testimonials Section */
.testimonials {
    padding: 9.6rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-50);
    padding: 3.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    transform: translateZ(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.author-info p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Blog Section */
.blog {
    padding: 9.6rem 0;
    background: var(--gray-50);
}

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

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: translateZ(0);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.blog-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 14px;
    color: var(--gray-500);
}

.blog-meta i {
    color: var(--primary-blue);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-green);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color:#fff;
}

.contact-info p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
    color:#fff;
}

.contact-text p {
    opacity: 0.8;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    transform: translateY(-1.5rem) scale(0.875);
    background: var(--primary-blue);
    padding: 0 0.5rem;
    border-radius: 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    background: var(--white);
    color: var(--primary-blue);
    margin-top: 1rem;
}

.contact-form .btn:hover {
    background: var(--gray-100);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
}

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

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) rotateY(15deg) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(15deg) rotateX(5deg) translateY(-20px);
    }
}

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

/* Buy Now Page Styles */
.buy-now-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.buy-now-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.buy-now-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.product-category {
    padding: 4rem 0;
    background: var(--white);
}

.product-category:nth-child(even) {
    background: var(--gray-50);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.category-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.product-card {
    cursor: pointer;
}

/* Product Details Page Styles */
.product-details {
    padding: 8rem 0 4rem;
    background: var(--gray-50);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.image-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.image-thumbnails img:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.product-info-detailed {
    background: var(--white);
    padding: 3rem !important;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.product-badge-large {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-info-detailed h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.product-info-detailed > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-rating .stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.product-rating span {
    color: var(--gray-600);
    font-size: 14px;
}

.product-price-large {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.original-price-large {
    font-size: 1.5rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.product-features-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 2rem;
    width: 20px;
}

.feature-item span {
    color: var(--gray-700);
    font-weight: 500;
}

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

.product-specifications h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.specs-grid {
    display: grid;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.spec-label {
    font-weight: 500;
    color: var(--gray-700);
}

.spec-value {
    color: var(--gray-600);
}

.product-actions {
    margin-bottom: 2rem;
}
.price__badge-sale{
 display:none !important;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    font-weight: 500;
    color: var(--gray-700);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--gray-200);
}

.quantity-controls input {
    border: none;
    padding: 0.5rem;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    width: fit-content;
}

.product-guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.guarantee-item i {
    color: var(--primary-green);
    font-size: 2rem;
}

.guarantee-item span {
    font-weight: 500;
    color: var(--gray-700);
}

.related-products {
    padding: 4rem 0;
    background: var(--white);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: ripple-animation 0.6s linear;
}

#ContactForm-subject + label{display:none;}
#ContactForm-subject option{color:#000;}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
@media (max-width: 768px) {
.footer-section p{padding-right:0;}
}
/* Mobile Responsive for Product Pages */
@media (max-width: 768px) {
    .pero_pluse{padding: 20px 0;}
    .buy-now-header h1 {
        font-size: 2rem;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .product-info-detailed h1 {
        font-size: 2rem;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .product-features-detailed {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .product-guarantees {
        grid-template-columns: 1fr;
    }
    .element-3{    left: 8%;}
    .element-2{    right: -8%;}
}
.footer-logo {
            width: 180px;
            height: auto;
            filter: brightness(0) saturate(100%) invert(75%) sepia(8%) saturate(1171%) hue-rotate(182deg) brightness(95%) contrast(87%);
            transition: all 0.3s ease;
            margin-bottom: 0.125rem; /* Reduced margin from 0.25rem to 0.125rem to move logo closer to text */
        }

        .footer-logo:hover {
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(109deg) brightness(107%) contrast(107%);
            transform: scale(1.05);
        }
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .dropdown-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
        margin-top: 0;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }


/* Buy Now Page Styles */
.buy-now-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.buy-now-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.buy-now-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.product-category {
    padding: 4rem 0;
    background: var(--white);
}

.product-category:nth-child(even) {
    background: var(--gray-50);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.category-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.product-card {
    cursor: pointer;
}

/* Product Details Page Styles */
.product-details {
    padding: 8rem 0 4rem;
    background: var(--gray-50);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.image-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.image-thumbnails img:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.product-info-detailed {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.product-badge-large {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-info-detailed h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.product-info-detailed > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-rating .stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.product-rating span {
    color: var(--gray-600);
    font-size: 14px;
}

.product-price-large {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.original-price-large {
    font-size: 1.5rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.product-features-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.125rem;
    width: 20px;
}

.feature-item span {
    color: var(--gray-700);
    font-weight: 500;
}

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

.product-specifications h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.specs-grid {
    display: grid;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.spec-label {
    font-weight: 500;
    color: var(--gray-700);
}

.spec-value {
    color: var(--gray-600);
}

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

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

.quantity-selector label {
    font-weight: 500;
    color: var(--gray-700);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--gray-200);
}

.quantity-controls input {
    border: none;
    padding: 0.5rem;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.product-guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.guarantee-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.guarantee-item span {
    font-weight: 500;
    color: var(--gray-700);
}

.related-products {
    padding: 4rem 0;
    background: var(--white);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile Responsive for Product Pages */
@media (max-width: 768px) {
    .contact{padding: 8.5rem 0}
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .stat h3{font-size:32px;}
    .stat p{font-size:14px;}
    .hero-description{font-size:20px;}
    .header {
        padding: 4px 2rem 4px 2rem !important;
    }
    #products .section-header h2, #testimonials .section-header h2{font-size:32px;}
    .buy-now-header h1 {
        font-size: 2rem;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .product-info-detailed h1 {
        font-size: 2rem;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .product-features-detailed {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .product-guarantees {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
        margin-top: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
}

       

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
.thumbnail-list .thumbnail{
 border-radius:8px;
}
.product-media-container{
  border-radius:16px;
}
@media (max-width: 480px) {
    .product-image{height: auto;}
    .hero-title {
        font-size: 32px;
    }

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

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

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
.product-form__buttons .product-form__submit:before,
.product-form__buttons .product-form__submit:after{
    content:unset;
}