/* CSS Variables */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Navigation */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.1)"><polygon points="50,0 100,100 0,100"/></svg>');
    background-size: 20px 20px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-20px) translateX(-20px); }
}

/* 3D Icons */
.icon-3d {
    animation: float3d 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float3d {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* 3D Cards */
.card-3d {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Slider */
.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* .slider-track {
    animation: scroll 30s linear infinite;
    width: max-content;
} */

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pages */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 15px 25px;
    background-color: #10b981;
    color: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

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

/* Modal for fullscreen images/GIFs */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    margin-top: 5%;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Work Filter */
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-bg h1 {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 70%;
    }
    
    .close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

/* Work Item Hover Effect */
.work-item {
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-item img {
    transition: transform 0.3s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

/* Form Styles */
input, select, textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.px-6 {
    padding-left: 6px !important;
    padding-right: 8px !important;
}

.bg-purple-600{
    display: none;
}

















































/* Add custom CSS styles below */ 
.s-block--testimonials .swiper .swiper-pagination-bullet {
  border-radius: unset !important;
  width: 0.65rem !important;
  height: 0.1rem !important;
  margin: 0 !important;
}
.s-product-options-option label > b {
  color: var(--color-primary)
}
.sicon-menu {
  color: #fff !important;
}

[data-option-type="single-option"] > label > small{
  display: none
}
.sub-cat-icon {
  background: #eee;
  border-radius: 11px;
  box-shadow: 0px 0px 5px 0px #d5d5d5;
  transition: 0.3s all ease-in-out;
}
.sub-cat-icon:hover {
  transform: translateY(-0.5rem);
  transition: 0.3s all ease-in-out;
  box-shadow: 0px 0px 10px 2px #d5d5d5;
}

#mobile-menu {
  background-color: #88a3e0 !important;
}



/* .logo-light {
    content: url("https://i.ibb.co/WvSZkG6z/ym-MVTSw-PSZxin0whkt-PAt6u-Vv-OFJa-K1b-Caz-P7-PBY.png") !important;
    width: auto !important;
    height: 2.5rem !important;
} */

#subcat-slider a.sub-categories {
    height: 100%;
    justify-content: flex-start;
}


.sssa img {
  max-width: 200px;
}
.faqs-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  label {
    background: #E0A80E;
    color: #fff !important;
  }
  i {
    color: #88a3e0;
  }
  .faq-answer {
    background-color: #88a3e0;
    color: #fff;
    padding: 10px;
  }
}

footer {
* {
  color: #fff !important;
}
h3 {
  color: #fff !important;
}
}

salla-add-product-button button {
background-image: linear-gradient(to right, #f5c855 -6%, #88a3e0);
  border-radius: 15px !important;
  border: none !important;
}

.store-footer__inner {
background-image: linear-gradient(215deg, #43659b -5%, #2AE2EB);
border-radius: 15px !important;
}

.s-search-input {
  color: #000 !important;
}

.dark .s-search-modal .s-search-results .s-search-product .s-search-product-title {
  color: #000 !important;
}

.s-search-product-price {
  color: red !important;
* {
  color: red !important;
}
}