/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Additional responsive refinements for smaller screens */
@media (max-width: 900px) {
    .categories { grid-template-columns: repeat(2, 1fr); }
    .category-image-wrapper { height: 220px; }
}

@media (max-width: 600px) {
    .categories { grid-template-columns: 1fr; }
    .category-image-wrapper { height: 200px; }
    .buy-now-large { padding: 0.8rem 1.6rem; font-size: 14px !important; }
}

@media (max-width: 420px) {
    .category-image-wrapper { 
    height: 170px; 
    
    }
}

:root {
    --primary-color: #8B5CF6;
    --secondary-color: #EC4899;
    --accent-color: #06B6D4;
    --warning-color: #F59E0B;
    --success-color: #10B981;
    /* Use single-site background color as requested */
    --dark-bg: #322f78;
    --darker-bg: #322f78;
    --light-text: #FFFFFF;
    --muted-text: #B0B0B0;
    --border-color: #4a0080;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url(./images/img/background.jpg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.rainbow-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 9999;
    background: linear-gradient(
        90deg,
        red,
        orange,
        yellow,
        green,
        blue,
        indigo,
        violet,
        red
    );
    background-size: 300% 100%;
    animation: rainbow-bar-flow 6s linear infinite;
}

@keyframes rainbow-bar-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== NAVIGATION & HERO ==================== 
.navbar-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    overflow: hidden;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}
*/
.navbar-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 135deg, rgba(15, 0, 26, 0.7) 0%, rgba(0, 0, 0, 0) 100%); 
    pointer-events: none;
    z-index: 1;
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    border: none;
    margin-bottom: 0;
    z-index: 100;
    box-shadow: none;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-start {
    justify-self: start;
}

.nav-end {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Navbar Email button to match mockup */
.navbar .nav-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 5px;
    border-radius: 999px;
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.navbar .nav-email:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.navbar .nav-email i { font-size: 0.95rem; }

.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-email-btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-label {
    color: var(--warning-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}



.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF5A9C;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Responsive nav adjustments */
@media (max-width: 1024px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-social {
        display: none;
    }
    .nav-container {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
    .hamburger {
        display: flex;
    }
}

/* ==================== EMAIL SUBSCRIBE ==================== */
.email-subscribe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.email-subscribe:hover {
    background: transparent;
    box-shadow: none;
}

.email-subscribe a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.email-subscribe a::before {
    content: '\2709';
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #EC4899;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.email-subscribe a:hover::before {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.email-subscribe a:hover {
    color: var(--warning-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 5px 0;
    transition: 0.3s;
}

/* ==================== MAIN CONTAINER ==================== */
.container {

    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

/* ==================== LEFT SECTION ==================== */
.left-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* ==================== HERO SECTION ==================== */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--warning-color);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.5);
    border: 3px solid var(--secondary-color);
    clip-path: polygon(
        50% 0%,
        100% 38%,
        82% 100%,
        18% 100%,
        0% 38%
    );
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.7);
}

/* ==================== CUSTOM HERO LAYOUT (LEFT HEX, CENTER, RIGHT HEX) ==================== */
.hero-wrapper {
    /* three columns: left hex, center content, right hex */
    grid-template-columns: 360px 1fr 360px;
    gap: 2rem;
    align-items: center;
}

.hero-hex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hex {
    width: 320px;
    height: 320px;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #7c4dff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,255,255,0.08) inset;
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-center {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gradient-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        #24c6dc 0%,
        #514a9d 16%,
        #ff6b6b 32%,
        #f94dff 48%,
        #ffdd00 64%,
        #00e6a8 80%,
        #24c6dc 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 6px 18px rgba(6, 182, 212, 0.08);
    animation: rainbow-text-flow 6s linear infinite;
}

@keyframes rainbow-text-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle.big {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0.25rem;
    color: #fff;
}

.hero-subtitle.small {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
}

.buy-now-overlay {
    margin: 0 0 4.5rem 250px;
    display: flex;
    justify-content: center;
}

.buy-now-large {
    background: rgba(91, 210, 255, 0.9);
    border: 2px solid rgba(255,255,255,0.5);
    color: #000;
    padding: 0.75rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(91, 210, 255, 0.4);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.buy-now-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 210, 255, 0.6);
    background: rgba(91, 210, 255, 1);
}

/* Responsive adjustments */
@media (max-width: 980px) {
    /* Ensure Buy Now stays readable on tablets/mobiles */
    .buy-now-overlay {
        margin: 1rem 0 0 0;
        justify-content: center;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    .hero-hex { display: none; }
    .gradient-title { font-size: 2.2rem; }
    .hero-subtitle.big { font-size: 1.25rem; }
}

/* ==================== YOUTUBE PROMO (SIDEBAR) ==================== */
.youtube-section {
   /* background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(6, 182, 212, 0.03));
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.04); */
    text-align: center;
    background-image: url(./images/img/youtube-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.youtube-section h3 {
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.6px;
}

.youtube-phones {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.8rem;
}

.phone {
    width: 70px;
    height: 130px;
    background: transparent;
    padding: 0px;
  /*  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 2px 6px rgba(139,92,246,0.08); */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/*
.phone:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }*/

.phone::after {
    /* small speaker notch */
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.phone img {
    width: 70px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.youtube-subscribe {
    display: inline-block;
    margin-top: 0.25rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(139,92,246,0.18);
}

@media (max-width: 680px) {
    .youtube-phones { gap: 0.5rem; }
    .phone { width: 88px; height: 176px; }
    .phone img { width: 72px; height: 160px; }
}

/* ==================== PATTERNS MOSAIC (DIAMOND TILES) ==================== */
.mosaic-section {
 /*   background: linear-gradient(135deg, rgba(139,92,246,0.04), rgba(6,182,212,0.02));
    padding: 0.9rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.03);
    */
     text-align: center;
}

.mosaic-section h3 {
    margin-bottom: 0.6rem;
    color: #fff;
    font-size: 1.05rem;
}

.mosaic-grid {
    display: block;
    width: 100%;
    padding: 0;
}

.mosaic-tile {
    width: 100%;
}

.mosaic-tile img {
    width: 100%;
    height: auto;
    display: block;
    cursor: crosshair;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mosaic-tile img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

/* ==================== HOVER ZOOM FOR IMAGES ==================== */
/* Apply a zoom-like scale on hover and change cursor to indicate zoom */
.mosaic-tile:hover img,
.category-image-wrapper:hover img,
.embroidery-item img:hover,
.trending-item img:hover,
.slider-image:hover,
.phone:hover img,
.hero-image img:hover {
    transform-origin: center center;
   /* for rotated mosaic images */
}

/* For non-rotated images (override rotation) */
.category-image-wrapper:hover img,
.embroidery-item img:hover,
.trending-item img:hover,
.slider-image:hover,
.phone:hover img,
.hero-image img:hover {
    transform: scale(1.25) rotate(0deg);
}
/*
.mosaic-tile:hover,
.category-image-wrapper:hover,
.embroidery-item:hover,
.trending-item:hover,
.slider-image:hover,
.phone:hover,
.hero-image img:hover {
    cursor: zoom-in;
}*/

/* Smooth transitions for zoom */
.mosaic-tile img,
.category-image-wrapper img,
.embroidery-item img,
.trending-item img,
.slider-image,
.phone img,
.hero-image img {
    transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms ease;
}

.mosaic-note {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 720px) {
    .mosaic-tile { }
}

@media (max-width: 420px) {
    .mosaic-tile {  }
    .mosaic-note { font-size: 0.8rem; }
.b-text {
  margin-bottom: -60px !important;
}
}


/* ==================== TRENDING HERO ==================== */
.trending-section {
    margin-top: 0rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--border-color);
}

.trending-hero {
    background-image: url('./images/img/bottam-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    position: relative;
}

.trending-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,0,26,0.35) 0%, rgba(139,92,246,0.45) 60%, rgba(6,182,212,0.12) 100%);
    pointer-events: none;
}


.trending-badge {
  position: relative;
  background: linear-gradient(90deg, #ff6b6b 0%, #7c4dff 100%);
  color: white;
  padding: 15px 70px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 2;
  text-decoration: none;
  display: inline-block;
}

.trending-content {
    margin-left: auto;
    padding: 0;
    text-align: center;
    z-index: 2;
}

.trending-title {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 0 6px 0;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.trending-sub {
    color: rgba(255,255,255,0.85);
    margin: 0 0 8px 0;
    font-weight:500;
}

.trending.bottom-t {
    font-size: 1.9rem;
}

.trending-cta {
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.05rem;
    margin: 6px 0 0 0;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

@media (max-width: 900px) {
    .trending-hero {
        padding: 1.25rem 1.5rem;
        min-height: 200px;
    }
    .trending-content { padding: 0; }
    .trending-title { font-size: 1.35rem; }
    .trending-sub { font-size: 1.1rem !important; }
    .trending.bottom-t { font-size: 1.1rem; }
}

@media (max-width: 600px) {
    .trending-hero {
        background-position: center right;
        min-height: 260px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.25rem 1rem;
    }
    .trending-badge {
        position: static;
        margin: 0 0 10px;
        align-self: center;
        transform: none;
        padding: 8px 18px;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .trending-content {
        margin: 0;
        padding: 0 6px;
        text-align: center;
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .trending-title { font-size: 1.1rem; }
    .trending-sub { font-size: 0.95rem !important; }
    .trending.bottom-t { font-size: 1rem; }
    .trending-cta { margin-top: auto; }
}

/* ==================== IMAGE MODAL / LIGHTBOX ==================== */
.img-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.img-modal[aria-hidden="false"] { display: flex; }

.img-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}

.img-modal-content {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2100;
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.img-modal[aria-hidden="false"] .img-modal-overlay {
    animation: fadeIn 0.3s ease;
}

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

.img-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    display: block;
    cursor: pointer;
}

.img-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1.5rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.img-modal-close:hover {
    background: rgba(255,0,100,0.8);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.img-modal-caption {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    text-align: center;
    max-width: 90vw;
}

/* Prevent background scrolling when modal open */
body.modal-open { overflow: hidden; }

/* ==================== MAGNIFYING LENS EFFECT ==================== */
.magnify-lens {
    position: fixed;
    border: 3px solid rgba(138, 43, 226, 0.8);
    border-radius: 50%;
    cursor: none;
    pointer-events: none;
    z-index: 9999;
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.6),
                0 0 20px rgba(255, 255, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: opacity 0.2s ease;
    opacity: 0;
}

/* ==================== CATEGORIES ==================== */
.categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Large screens just below 1440px: ease to 4 columns */
@media (max-width: 1280px) {
  .categories { grid-template-columns: repeat(4, 1fr); }
}

.category-box {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-overlay {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 1;
    transition: all 0.3s ease;
}

/* On small screens, center overlay vertically for better visibility */
@media (max-width: 900px) {
  .category-overlay { top: 65px; padding: 1rem; }
  .category-btn { padding: 0.7rem 1.4rem; font-size: 0.95rem; }
}
@media (max-width: 600px) {
  .category-btn { padding: 0.65rem 1.2rem !important; font-size: 14px; 
font-size: 14px !important;
}
  
}

.category-box:hover .category-overlay {
    opacity: 1;
}

.category-box:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.category-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.category-btn {
    background-image: linear-gradient(to top, #6F19C4, #4ECDC4);
    color: #ffffff;
    border-color: #EC4899 3px solid;
    padding: 0.5rem 3.6rem;
    border-radius: 5px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==================== EMBROIDERIES SECTION ==================== */
.embroideries-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.embroideries-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.section-subtitle {
    color: var(--muted-text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.embroidery-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.embroidery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.embroidery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* ==================== TRENDING SECTION ==================== */
.trending-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 0rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.trending-section h2 {
   font-size: 2.0rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
     background: -webkit-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet);
  background: -moz-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: -o-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: -ms-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet,red);
        background-repeat:repeat-x;
    background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  font-weight: 800;
}

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

.trending-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.trending-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.trending-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.trending-item h4 {
    padding: 1rem;
    color: var(--warning-color);
    text-align: center;
}

/* ==================== RIGHT SIDEBAR ==================== */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3.1rem;
}

.sidebar-section {
   /* background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease; */
    padding: .2rem;

    
}
 /*
.sidebar-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}
*/
.sidebar-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.social-link {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid var(--border-color);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

/* ==================== FEATURED SLIDER ==================== */
.featured-section {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top:30px;
}

.featured-slider {
    position: relative;
    margin: -1rem 0 20px;
    border-radius: 8px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-container:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 8px;
}

.slider-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.8);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    border-color: white;
}

.dot:hover {
    background: var(--secondary-color);
}

/* ==================== MAP CONTAINER ==================== */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 1rem 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.featured-section img,
.map-section img {
    width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

.featured-section p,
.map-section p {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
}

.link-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-btn:hover {
    color: var(--secondary-color);
}

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

.links-section li {
    margin-bottom: 0.75rem;
}

.links-section a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.links-section a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.search-section {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--light-text);
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: var(--muted-text);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.btn-search {
    background: var(--primary-color);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--secondary-color);
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(15, 0, 26, 0.95);
    border-top: 2px solid var(--border-color);
    padding: 2rem;
    margin-top: 0rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.footer-content p a {
    color: #ff69b4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-content p a:hover {
    color: #ff1493;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 5px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .email-subscribe {
        width: auto;
    }

    .email-subscribe a {
        font-size: 0.85rem;
    }

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

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

    .categories { grid-template-columns: repeat(3, 1fr); }
    .category-image-wrapper { height: 260px; }

    .embroideries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(15, 0, 26, 0.98);
        padding: 1rem;
        gap: 0;
    }
    .buy-now-overlay {
        margin: 0rem auto 0;
        margin-left: 60px;
    }

    .nav-links.active li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .container {
        padding: 1rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

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

    .navbar-hero {
        min-height: 500px;
    }

    .categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .category-box {
        padding: 1rem;
    }

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

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

    .embroideries-section,
    .trending-section {
        padding: 1.5rem;
    }

    .embroideries-section h2,
    .trending-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        display: none;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

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

    .navbar-hero {
        min-height: 400px;
    }

    .nav-top-right {
        display: none;
    }

    .email-subscribe {
        width: auto;
        margin: 0;
    }

    .email-subscribe a {
        font-size: 0.75rem;
    }

    .email-subscribe a::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-box {
        padding: 0.75rem;
    }

    .category-image-wrapper {
        height: 200px;
    }

    .category-overlay h3 {
        font-size: 1.2rem;
    }

    .category-overlay p {
        font-size: 0.75rem;
    }

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

    .embroidery-item img {
        height: 120px;
    }

    .embroideries-section h2,
    .trending-section h2 {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .right-sidebar {
        gap: 1rem;
    }

    .sidebar-section {
        padding: 1rem;
    }

    .sidebar-section h3 {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Disable hover effects for right sidebar social links (global) */
.right-sidebar .social-links a,
.right-sidebar .social-links a:hover {
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: default !important;
}

.right-sidebar .social-links img,
.right-sidebar .social-links img:hover {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
  transition: none !important;
}

/* Responsive button adjustments */
@media (max-width: 600px) {
  .btn-primary,
  .btn-secondary,
  .btn-search,
  .buy-now-large,
  button,
  .button {
    display: block;
background-size: cover;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
  }

  .search-section {
    flex-direction: column;
  }

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

/* Mobile responsiveness for hero content */
@media (max-width: 600px) {
  .hero-content {
    text-align: center;
    align-items: center;
    padding: 0 12px;
  }

  .buy-now-overlay {
    width: 60%;
    margin: 0 0 12px 0 !important;
    justify-content: center;
  }

  .buy-now-large {
    width: 100%;
    max-width: 340px;
  }

  .b-text { margin: 0; }

  .hero-title {
    font-size: 1.0rem;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle.big { font-size: 1rem; }
  .hero-subtitle.small { font-size: 0.85rem; }
}

@media (max-width: 420px) {
  .buy-now-large { max-width: 145px !important; }
  .hero-title { font-size: 1.75rem !important; }
  .hero-subtitle.big { font-size: 1rem !important; }
  .hero-subtitle.small { font-size: 0.8rem !important; }
  .bottom-t{
    font-size: 1.3rem;
}
}

.bottom-t{
    font-size: 2.0rem;
  }
 
  
  /* buttion css */

.vs-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: #1C0844;
  color: #ffffff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 60px;
  border-radius: 10px;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
}

.vs-btn,
.vs-btn:hover,
.vs-btn:focus,
.vs-btn:active {
  text-decoration: none;
}

.vs-btn::before,
.vs-btn::after {
  width: 103%;
  height: 103%;
  content: "";
  margin: auto;
  position: absolute;
  top: -2%;
  left: 0%;
  background: #84bfff;
  transition: all ease 0.5s;
  z-index: -1;
  border-radius: inherit;
}

.vs-btn::before { transform: rotateX(90deg); }
.vs-btn::after { transform: rotateY(90deg); }

.vs-btn > i { margin-left: 8px; }

.vs-btn:hover { color: #ffffff; }
.vs-btn:hover::before { transform: rotateX(0); }
.vs-btn:hover::after { transform: rotateY(0); }
  
  /* Responsive sizing for .vs-btn */
  @media (max-width: 900px) {
    .vs-btn { padding: 12px 28px; font-size: 14px; border-radius: 26px; }
  }
  @media (max-width: 600px) {
    .vs-btn { padding: 10px 22px; font-size: 13px; border-radius: 24px; }
  }
  @media (max-width: 420px) {
    .vs-btn { padding: 8px 18px; font-size: 12px; border-radius: 22px; }
  }
  
  .vs-icon {
  min-width: 60px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 0;
  color: #ffffff;
  font-size: 24px;
  background-color: transparent;
  border: 2px solid #ffffff;
  position: relative;
  z-index: 1;
}

.vs-icon i {
  color: #ffffff;
  font-weight: 400;
  transition: all 0.5s ease;
}

.vs-icon { transition: all 0.3s ease; }

.vs-icon:hover {
  color: #1C0844;
  border-color: #ffffff;
  background-color: #ffffff;
}

.vs-icon:hover i { color: #1C0844; }

.icon-btn {
  padding: 0;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #1C0844;
  border-radius: 10px;
  transition: all ease 0.4s;
  position: relative;
  z-index: 1;
}

.icon-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.icon-btn2 {
  padding: 0;
  font-size: var(--icon-font-size, 20px);
  width: var(--icon-size, 80px);
  height: var(--icon-size, 60px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
  border-radius: 30px;
  transition: all ease 0.4s;
  position: relative;
  z-index: 1;
}

.icon-btn2 i { font-size: 24px; font-weight: 500; }

.icon-btn2:hover {
  background-color: #1C0844;
  border-color: transparent;
  color: #ffffff;
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border: none;
  background-color: transparent;
  padding: 0;
}

.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 120px);
  height: var(--icon-size, 120px);
  line-height: var(--icon-size, 120px);
  font-size: var(--icon-font-size, 1.5em);
  text-align: center;
  background-color: #1C0844;
  color: #ffffff;
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}

.play-btn::after,
.play-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #1C0844;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
}

.play-btn::after { animation-delay: 2s; }

.play-btn.style3 i,
.play-btn.style2 i {
  --icon-size: 60px;
  border-radius: 5px;
  --icon-font-size: 18px;
}

.play-btn.style2 > i {
  --icon-size: 120px;
  --icon-font-size: 48px;
  border-radius: 0;
  background-color: #1C0844;
}

.play-btn.style2::after,
.play-btn.style2::before {
  border-radius: 0px;
  background-color: #1C0844;
}

.play-btn.style2:hover > i { background-color: #1C0844; }
.play-btn.style2:hover::before,
.play-btn.style2:hover::after { background-color: #1C0844; }

.play-btn.style3 i { background-color: rgba(14, 89, 242, 0.7); }

.play-btn.style3::after,
.play-btn.style3::before { display: none; }

.play-btn.style4 { --icon-size: 120px; --icon-font-size: 30px; }

.play-btn.style4::after,
.play-btn.style4::before,
.play-btn.style4 i {
  background-color: #ffffff;
  color: #1C0844;
}

.play-btn.style5 i {
  border-radius: 0;
  --icon-size: 120px;
  --icon-font-size: 30px;
}

.play-btn.style5::after,
.play-btn.style5::before {
  border: 2px solid #1C0844;
  background-color: transparent;
  border-radius: 0;
}

.play-btn.style6 { --icon-size: 60px; --icon-font-size: 18px; }

.play-btn:hover::after,
.play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--darker-bg);
  color: #ffffff;
}

.link-btn {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: uppercase;
}

.link-btn i {
  margin-left: 7px;
  font-size: 0.9rem;
}

.link-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #1C0844;
  transition: all ease 0.4s;
}

.link-btn:hover { color: #1C0844; }
.link-btn:hover::before { width: 100%; }

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
}

.scroll-btn i {
  display: inline-block;
  background-color: #1C0844;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
}

.scroll-btn::before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed #1C0844;
  animation: spin 13s infinite linear;
}

.scroll-btn:focus i,
.scroll-btn:hover i {
  background-color: #1C0844;
  color: #ffffff;
}

.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 600px) {
  .scroll-btn { --btn-size: 40px; --extra-shape: -4px; right: 15px; bottom: 50px; }
  .scroll-btn.show { bottom: 15px; }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 96;
}

.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .play-btn.style4 { --icon-size: 80px; --icon-font-size: 20px; }
}

@media (max-width: 600px) {
  .play-btn { --icon-size: 60px; }
  .scrollToTop { right: 20px; }
  .scrollToTop.show { bottom: 20px; }
  .icon-btn2 { width: 60px; height: 40px; }
  .icon-btn2 i { font-size: 16px; }
}

@media (max-width: 420px){
  .vs-icon {
    min-width: 50px;
    min-height: 50px;
    font-size: 20px;
  }
}

.rainbow2 {
	font-size: 35px;
	font-family: Arial Black, Gadget, sans-serif;
  background-image: -webkit-linear-gradient(left, #f00, #ff2b00, #f50, #ff8000, #fa0, #ffd500, #ff0, #d4ff00, #af0, #80ff00, #5f0, #2bff00, #0f0, #00ff2a, #0f5, #00ff80, #0fa, #00ffd5, #0ff, #00d5ff, #0af, #0080ff, #05f, #002aff, #00f, #2b00ff, #50f, #8000ff, #a0f, #d400ff, #f0f, #ff00d4, #f0a, #ff0080, #f05, #ff002b, #f00);
    -webkit-animation: animatedBackground_a 5s linear infinite alternate;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #0000;
    background-clip: text;
}

@keyframes animatedBackground_a {
    0% { background-position: 0 0 }
    100% { background-position: -500px 0 }
}

	
	.rainbow{
  width:200px;
  height:8px;
  background: -webkit-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet);
  background: -moz-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: -o-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: -ms-linear-gradient(left, red,orange,yellow,green,blue,indigo,violet,red);
  background: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet,red);
  background-repeat:repeat-x;
  
  -webkit-animation:go 8s linear infinite;
  -moz-animation:go 1s 8inear infinite;
  -o-animation:go 8s linear infinite;
  -ms-animation:go 8s linear infinite;
  animation:go 8s linear infinite;
}

@-webkit-keyframes go{
  0%{background-position:0;}
  100%{background-position:200px 0;}

}
@-moz-keyframes go{
  0%{background-position:0;}
  50%{background-position:100px 0;}
  100%{background-position:200px 0;}

}
@-o-keyframes go{
  0%{background-position:0;}
  100%{background-position:200px 0;}

}
@-ms-keyframes go{
  0%{background-position:0;}
  100%{background-position:200px 0;}

}
@keyframes go{
  0%{background-position:0;}
  100%{background-position:200px 0;}

}

