
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.scale-wrapper {
    transform-origin: top center;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}


.top-bar {
    background-color: #0b61cd;
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    position: relative;
    overflow: hidden;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.promo-marquee {
    display: flex;
    animation: marquee 25s linear infinite;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 40px;
}

.promo-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-item a:hover {
    color: #ffcc00;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom:20px;
    margin-top:10px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: transform 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
}


.social-icons a:hover {
    transform: scale(1.2);
    color: #ffcc00;
}


.bottom-bar {
    background-color: #0d1b2a;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: sticky;
    top: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    margin-top: -25px;
}

.bottom-bar.scrolled {
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
    transition: transform 0.3s;
}

.logo.scrolled {
    transform: scale(0.9);
}

.logo-icon {
    color: #4a90e2;
    font-size: 28px;
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.7));
}

.logo-text {
    color: white;
}

.logo-text span {
    color: #4a90e2;
}
.nav-links li {
    position: relative;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
}

.nav-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    z-index: 1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav-links a span {
    position: relative;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}

.nav-links a:hover span {
    color: #222;
    transform: scale(0.85);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}


.nav-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    text-decoration: none;
    
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 30px; 
    height: 30px; 
    border-radius: 50%;
}

.nav-icons a:hover {
    color: #4a90e2;
    transform: scale(1.1);
}


.cart-icon {
    position: relative;
}


.cart-tooltip {
    position: absolute;
    top: -85px; 
    right: -125px; 
    left: auto;
    transform: scale(0);
    transform-origin: bottom left; 
    background-color: #ff3366;
    color: white;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
   
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.4s; 
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 9px; 
    transform: translateX(10px);
    transform: translateY(-2px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 9px solid #ff3366;
}


.bottom-bar.scrolled .cart-icon .cart-tooltip::after {
    bottom: -8px;
    left: 10px;
}


.cart-icon:hover .cart-tooltip {
    opacity: 1;
    transform: scale(1);
}


.cart-icon:not(:hover) .cart-tooltip {
    transition: opacity 0.2s ease-in, transform 0.2s ease-in; 
    opacity: 0;
    transform: scale(0);
}



.custom-bubble-wrapper {
    position: absolute;
    top: -25px;
    right: -25px; 
    left: auto;
    display: flex;
    flex-direction: column; 
    align-items: flex-end; 
    gap: 3px; 
    z-index: 11;
}


.bottom-bar.scrolled .cart-icon .custom-bubble-wrapper {
    top: -5px; 
    right: -15px;
}


.custom-bubble {
    border-radius: 50%;
    background-color: #ff3366; 
    position: relative;
    margin-top: 0; 
    opacity: 0;
    transform: scale(0);
    
   
    transition: opacity 0.2s ease-in, transform 0.2s ease-in; 
}


.bubble-1 { width: 14px; height: 14px; margin-right: 0px; }
.bubble-2 { width: 10px; height: 10px; margin-right: 6px; }
.bubble-3 { width: 6px; height: 6px; margin-right: 12px; }


.cart-icon .bubble-1 {
    transition-delay: 0.0s; 
}
.cart-icon .bubble-2 {
    transition-delay: 0.05s; 
}
.cart-icon .bubble-3 {
    transition-delay: 0.1s; 
}


@keyframes bubble-sequence-in {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}


.cart-icon:hover .bubble-3 {
    animation: bubble-sequence-in 0.15s ease-out 0.0s forwards; 
}
.cart-icon:hover .bubble-2 {
    animation: bubble-sequence-in 0.15s ease-out 0.15s forwards;
}
.cart-icon:hover .bubble-1 {
    animation: bubble-sequence-in 0.15s ease-out 0.3s forwards;
}


.cart-icon:not(:hover) .custom-bubble {
   
    animation: unset !important; 
    
   
    opacity: 0;
    transform: scale(0);
    
   
    
}


.bottom-bar.scrolled .cart-icon .custom-bubble,
.bottom-bar.scrolled .cart-icon .cart-tooltip {
    opacity: 0 !important;
    transform: scale(0) !important;
    animation: none !important;
    transition: none !important;
    pointer-events: none !important;
}


.page-heading {
    text-align: center;
    padding: 40px 0 30px;
    position: relative;
}

.page-heading h1 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 0; 
    opacity: 0;
    transform: translateY(20px);
    animation: slide-in-up 1s ease-out forwards; 
}

@keyframes slide-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.page-heading .highlight {
    color: #1a73e8;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #1a73e8, #4a90e2, #1a73e8);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
   
    animation: gradient-shift 3s ease-in-out infinite, 
               slide-in-up 1s ease-out forwards;
    display: inline-block;
    padding: 0 5px;
}


.page-heading .highlight::after {
    content: '';
    position: absolute;
    height: 3px;
    bottom: -5px;
    border-radius: 2px;
   
    background-color: #1a73e8; 
    
   
    width: 0; 
    left: 0; 
    right: auto;
    
   
    animation: underline-cycle 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; 
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


@keyframes underline-cycle {
   
    0% { width: 0; left: 0; right: auto; }
    25% { width: 100%; left: 0; right: auto; }
    
   
    50% { width: 0; left: 100%; right: auto; }
    
   
    50.1% { width: 0; left: auto; right: 0; }
    
   
    75% { width: 100%; left: auto; right: 0; }
    
   
    100% { width: 0; left: auto; right: 100%; }
}

.heading-subtitle {
    display: none;
}


.content-section {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8f4ff;
}
        
.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}
        

.eye-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3;
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover .eye-icon {
    opacity: 1;
    transform: translateY(0);
}

.eye-icon i {
    color: #333;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.eye-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #4a90e2;
    transition: height 0.4s ease;
    z-index: 1;
}

.eye-icon:hover .eye-fill {
    height: 100%;
}

.eye-icon:hover i {
    color: white;
}

.eye-icon:not(:hover) .eye-fill {
    transition: height 0.3s ease;
}


.save-tag {
    position: absolute;
    top: 15px;
    left: -5px;
    background: linear-gradient(135deg, #ff3366, #ff0033);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
    animation: pulse 1.5s infinite;
}

.save-tag::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid #cc0000;
    border-top: 5px solid #cc0000;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-info {
    padding: 20px;
    position: relative;
    text-align: center;
}

.product-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-weight: 700;
    font-size: 18px;
    color: #1a73e8;
}

.original-price {
    font-size: 14px;
    color: #444;
    text-decoration: line-through;
    position: relative;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, transparent 0%, #ff3333 50%, transparent 100%);
    transform: translateY(-50%);
}

.discounted-price {
    font-weight: 700;
    font-size: 18px;
    color: #ff3333;
}

.product-button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-now {
    background-color: #1a73e8;
    color: white;
}

.buy-now:hover {
    background-color: #0d5dc4;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 8px rgba(13, 93, 196, 0.3);
}

.sold-out {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a73e8;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.view-all-button:hover::before {
    left: 100%;
}

.view-all-button:hover {
    background-color: #0d5dc4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 93, 196, 0.3);
}

.view-all-button:hover i {
    transform: translateY(-3px);
}

.view-all-button i {
    transition: transform 0.3s ease;
}


.dummy-content {
    height: 1500px;
    padding: 20px;
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    margin-top: 20px;
    border-radius: 10px;
    text-align: center;
    color: #666;
}


.purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.purchase-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.purchase-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #1a73e8;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-modal:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.product-info-modal {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8f4ff;
    justify-content: center;
}

.modal-product-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 20px;
    background-color: #e8f4ff;
    border-radius: 10px;
    padding: 10px;
}

.modal-product-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.modal-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a73e8;
}

.sms-instructions {
    background-color: #f0f8ff;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #1a73e8;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.phone-number i {
    font-size: 24px;
}

.instructions {
    text-align: left;
    margin: 20px 0;
    line-height: 1.6;
}

.instructions ol {
    padding-left: 20px;
    margin: 15px 0;
}

.instructions li {
    margin-bottom: 10px;
}

.whats-included {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.whats-included h4 {
    color: #1a73e8;
    margin-bottom: 10px;
}

.whats-included ul {
    padding-left: 20px;
}

.whats-included li {
    margin-bottom: 8px;
}

.copy-button {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 10px 0;
}

.copy-button:hover {
    background-color: #0d5dc4;
}

.copy-confirmation {
    color: #4CAF50;
    font-weight: 600;
    margin-top: 10px;
    display: none;
}

.copy-confirmation.show {
    display: block;
}

.response-time {
    background-color: #e8f4ff;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
}


.site-footer {
    background-color: #0d1b2a;
    color: white;
    padding: 60px 0 30px;
    border-radius:20px;
    margin-top:-10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
        
.footer-column {
    flex: 1;
    min-width: 200px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 280px;
    text-align: center;
}
.footer-column > * {
    flex-shrink: 0;
}
.footer-column.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-column:nth-child(1) { transition-delay: 0.1s; }
.footer-column:nth-child(2) { transition-delay: 0.2s; }
.footer-column:nth-child(3) { transition-delay: 0.3s; }
.footer-column:nth-child(4) { transition-delay: 0.3s; }

.footer-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #4a90e2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-column:hover .footer-icon {
    transform: scale(1.1) translateY(-5px);
}


.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}


.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #4a90e2;
    border-radius: 2px;

   
    transform: scaleX(0.2);
    transform-origin: center;

   
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


.footer-column:hover h3::after,
.footer-column h3:focus-visible::after {
    transform: scaleX(1);
}




        
.footer-column p {
    line-height: 1.6;
    color: #b0b0b0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
}
        
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e2a3a;
    font-size: 14px;
    color: #8a8a8a;
    width: 100%;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4a90e2;
}
.back-to-top-logo {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.back-to-top-logo:hover {
    transform: translateY(-3px);
}

.back-to-top-logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
}

.back-to-top-logo .logo-icon {
    color: #4a90e2;
    font-size: 28px;
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.7));
}

.back-to-top-logo .logo-text {
    color: white;
}

.back-to-top-logo .logo-text span {
    color: #4a90e2;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1e2a3a;
}
.contact-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-details a:hover {
    color: #4a90e2;
    transform: translateY(-1px);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.footer-icon {
    animation: float 5s ease-in-out infinite;
}

.footer-column:nth-child(2) .footer-icon {
    animation-delay: 0.5s;
}

.footer-column:nth-child(3) .footer-icon {
    animation-delay: 1s;
}

.footer-column:nth-child(4) .footer-icon {
    animation-delay: 1.5s;
}


@media (max-width: 1400px) {
    .scale-wrapper {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .scale-wrapper {
        width: 90%;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        justify-content: center;
    }
    
    .footer-column {
        flex: 0 0 45%;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .scale-wrapper {
        width: 95%;
    }
    
    .nav-content {
        flex-direction: row;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .scale-wrapper {
        width: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .promo-marquee {
        animation-duration: 15s;
    }
    
   
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #0d1b2a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 18px;
        border-radius: 0;
    }
    
    .nav-icons {
        gap: 15px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bottom-bar {
        padding: 20px 0;
    }
    
    .bottom-bar.scrolled {
        padding: 15px 0;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .product-info-modal {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-product-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .footer-column {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 0;             
        transform-origin: center;
    }
    
   
    .search-wrapper.active {
        width: 180px;
    }
    
   
    .cart-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    .phone-number {
        font-size: 20px;
        flex-direction: column;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        min-height: auto;
        margin-bottom: 30px;
    }
    
    .footer-content {
        gap: 20px;
    }
}


.loading-spinner {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

.no-products, .error-message {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

.error-message {
    color: #e74c3c;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

.no-products, .error-message {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
    background: #f9f9f9;
    border-radius: 10px;
    margin: 20px 0;
}

.error-message {
    color: #e74c3c;
    background: #fdeaea;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 30px;
    width: 30px; 
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}


.search-wrapper .search-icon {
    color: white;
    font-size: 18px;
    padding: 5px;
    transition: transform 0.3s;
}


.search-wrapper .search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    background: white;
    color: #333;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    pointer-events: none;
}


.search-wrapper.active {
    width: 220px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.search-wrapper.active .search-input {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.search-wrapper.active .search-icon {
    color: #1a73e8;
    transform: rotate(90deg);
}



.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-wrapper.active .search-results {
    display: block;
}

.search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.search-result-price {
    color: #1a73e8;
    font-weight: 700;
    font-size: 16px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}


.search-wrapper {
    z-index: 1001;
    position: relative;
}

.variant-indicator {
    display: none;
}

.variant-selector {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 8px;
    border-radius: 8px;
    margin: 8px;
    opacity: 1;
    transform: translateY(5px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .variant-selector {
    opacity: 1;
    transform: translateY(0);
}

.price-from {
    font-size: 12px;
    color: #666;
    margin-right: 5px;
    font-style: italic;
}

.variant-custom-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    font-style: italic;
}

.variant-name {
    font-weight: 600;
    color: #333;
}

.variant-price {
    font-weight: 700;
    color: #1a73e8;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-variant-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.selected-variant-text strong {
    color: #1a73e8;
}


.variant-discount {
    color: #ff3333;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
}

.variant-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-right: 5px;
}


.variant-option.loading {
    opacity: 0.7;
    pointer-events: none;
}

.variant-option.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


@media (max-width: 768px) {
    .variant-selector {
        opacity: 0.8;
    }
    
    .variant-options {
        flex-direction: row;
        gap: 6px;
    }
    
    .variant-option {
        min-width: auto;
        padding: 4px 8px;
        font-size: 9px;
    }
}



.product-card:hover .variant-selector {
    opacity: 1;
    transform: translateY(0);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.variant-option {
    min-width: 60px;
}

.variant-option:hover:not(.out-of-stock):not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.variant-option.active {
    background: linear-gradient(135deg, #1a73e8 0%, #4a90e2 100%);
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.6);
    transform: translateY(-2px);
    color: white;
}

.variant-option.active::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #2ecc71;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


.variant-option.out-of-stock {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #bdc3c7;
    cursor: not-allowed;
    position: relative;
    opacity: 0.7;
    border-color: rgba(189, 195, 199, 0.5);
}

.variant-option.out-of-stock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e74c3c;
    transform: rotate(-45deg);
    opacity: 0.8;
}

.variant-option.out-of-stock::after {
    content: 'Out of Stock';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.variant-option.out-of-stock:hover::after {
    opacity: 1;
}


.price-from {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}


.variant-selector::before {
    content: '';
    display: block;
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    .variant-option {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 50px;
    }
    
    .variant-selector {
        padding: 8px;
        margin: 5px;
    }
    
    .variant-options {
        gap: 5px;
    }
}


@keyframes variantSelect {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.variant-option.active {
    animation: variantSelect 0.3s ease;
}


.product-card.sold-out {
    position: relative;
    opacity: 0.8;
}

.product-card.sold-out::after {
    content: 'SOLD OUT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.product-card.sold-out .buy-now {
    background: #95a5a6;
    cursor: not-allowed;
}

.product-card.sold-out .buy-now:hover {
    transform: none;
    box-shadow: none;
}



.variant-option {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ecf0f1;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(52, 73, 94, 0.7);
    backdrop-filter: blur(10px);
    padding: 2px 4px;
    margin: 2px;
}

.variant-option:hover:not(.out-of-stock):not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.6);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(52, 73, 94, 0.9);
}

.variant-option.active {
    background: linear-gradient(135deg, #1a73e8 0%, #4a90e2 100%);
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.8);
    transform: translateY(-2px);
    color: white;
}


.variant-actions-section {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.variant-actions-section h4 {
    margin: 0 0 15px 0;
    color: #4a90e2;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.variant-actions-grid {
    display: grid;
    gap: 10px;
}

.variant-action-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.variant-name {
    font-weight: 600;
    color: #6ec1ff;
    flex: 1;
}

.variant-price {
    font-weight: 700;
    color: #2ecc71;
    margin: 0 15px;
}

.variant-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.variant-stock-status {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.variant-stock-status.in-stock {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.variant-stock-status.out-of-stock {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}




.modal-variant-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 2px solid #34495e;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #2c3e50;
    margin-bottom: 8px;
}

.modal-variant-option:hover {
    border-color: #3498db;
    background: #34495e;
}

.modal-variant-option.active {
    border-color: #9b59b6;
    background: #8e44ad;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}


@media (max-width: 768px) {
    .variant-action-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .variant-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .variant-option {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 50px;
    }
}



.selected-variant-simple {
    background: rgba(74, 144, 226, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid #4a90e2;
}

.selected-variant-simple p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.selected-variant-simple strong {
    color: #4a90e2;
}
.variant-discount-content {
    display: none;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #2d3b4d;
}

.variant-discount-content.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.product-info {
    padding: 15px 20px 20px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.product-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.profit-text {
    font-size: 12px;
    color: #0b61cd;
    font-weight: 600;
    margin: 4px 0 8px 0;
    padding: 4px 8px;
    background: rgba(114, 192, 245, 0.1);
    border-radius: 4px;
    display: inline-block;
    border-left: 3px solid #0b61cd;
    flex-shrink: 0;
    line-height: 1.3;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.product-button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}

.variant-sale-badge {
    background: linear-gradient(135deg, #ff3366, #ff0033);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 5px;
    animation: pulse 1.5s infinite;
    box-shadow: 0 2px 4px rgba(255, 51, 102, 0.3);
}

.variant-option.active .variant-sale-badge {
    background: linear-gradient(135deg, #fff, #ff3366);
    color: #ff3366;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.variant-option.out-of-stock .variant-sale-badge {
    background: #95a5a6;
    animation: none;
}


.variant-option {
    position: relative;
    overflow: hidden;
}

.variant-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.variant-option:hover::before {
    left: 100%;
}

.variant-option.active {
    background: linear-gradient(135deg, #1a73e8 0%, #4a90e2 100%);
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.6);
    transform: translateY(-2px);
    color: white;
}

.variant-option.active .variant-sale-badge {
    background: white;
    color: #ff3366;
    font-weight: 700;
}

.product-card, .nav-links, .logo, 
.variant-option, .product-price, .product-actions, .header, .footer {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.product-description, .instructions, .modal-content, 
.verification-info, .authorization-info, form {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


input, textarea, [contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}



.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}


@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 180px;
        height: 40vh;
        background-color: #0d1b2a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        border-bottom-left-radius: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 8px 0;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        font-size: 16px;
        border-radius: 8px;
        text-align: left;
    }
    
   
    .nav-links.active ~ .nav-icons {
        display: none;
    }
    
   
    .nav-links.active ~ .nav-icons .search-wrapper.active {
        display: none;
    }
}

