/* CSS Design System for eGadgets */
:root {
    --bg-dark: #0b0b22;
    --bg-header: #131333;
    --accent-purple: #6e57e0;
    --text-white: #ffffff;
    --text-muted: #a1a1c1;
    --card-bg: #1a1a3d;
    --btn-purple: #5c47cf;
    --hot-badge: #ff4757;
    --sale-badge: #2ed573;
    --container-width: 1200px;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content {
    z-index: 1;
}

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

.flex-gap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(2, 4fr);
    gap: 15px;
}

.grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 15px;
}


.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Specific Section Styles */

/* Top Bar */
.top-bar {
    background: #08081a;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--border-color);
    border-radius: 15px;
    color: white;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#yesBtn {
    background: #6b2df0;
    color: #fff;
}

#yesBtn:hover {
    background: #3e8e41;
}

#noBtn {
    background: #9d3bf6;
    color: #fff;
}

#noBtn:hover {
    background: #d32f2f;
}

/* Warning section */
.warn {
    font-size: 16px;
    background-color: #000;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}

.header {
    background: var(--bg-header);
    padding: 20px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: var(--accent-purple);
}

.search-container {
    flex: 1;
    margin: 0 40px;
    display: flex;
    background: #1e1e4a;
    border-radius: 4px;
    overflow: hidden;
}

.img {
    max-width: 296px;
    margin: 0 auto;
}

.category-select {
    padding: 10px 15px;
    background: #25255a;
    font-size: 14px;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.search-container input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    outline: none;
}

.btn-search {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-weight: 600;
}

.header-tools .contact-info p {
    font-weight: 600;
}

.header-tools .contact-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-purple);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.nav-main {
    background: #1a1a3d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;

}

.btn-categories {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    padding-left: 30px;
}

.nav-links li a {
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links li a.active {
    color: var(--accent-purple);
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
}

.hero-slider {
    background: linear-gradient(135deg, #131333 0%, #0b0b22 100%);
    border-radius: 15px;
    padding: 60px;
    display: flex;
    align-items: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.slide {
    display: flex;
    width: 100%;
    align-items: center;
}

.slide-content {
    flex: 1;
}

.badge {
    background: var(--accent-purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.slide-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.price-start {
    font-size: 18px;
    margin-bottom: 30px;
}

.price-start span {
    font-weight: 700;
    font-size: 24px;
}

.btn-primary {
    background: orange;
    color: #000;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
}

.ad {
    position: relative;
}

.ad-btn {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    border-radius: 7px;
    background: var(--accent-purple);
    color: white;
    text-decoration: none;
    font-weight: 400;
}

.slide-image {
    flex: 1;
}

.slide-image img {
    margin-left: auto;
    filter: drop-shadow(0 0 50px rgba(110, 87, 224, 0.3));
}

/* Features Bar */
.features-bar {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Promo Cards */
.category-promos {
    padding: 40px 0;
}

.promo-card {
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dark-gradient {
    background: linear-gradient(90deg, #131333, #1e1e4a);
}

.blue-gradient {
    background: linear-gradient(90deg, #0b2244, #131333);
}

.purple-gradient {
    background: linear-gradient(90deg, #220b44, #131333);
}

.promo-card img {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

/* Products Section */
.products-section {
    padding: 40px 0;
}

.section-header h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 15px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-image {
    background: #131333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.badge-hot {
    background: var(--hot-badge);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.badge-sale {
    background: var(--sale-badge);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-info .brand {
    font-size: 20px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.product-info h4 {
    font-size: 14px;
    margin: 5px 0;
    height: 40px;
    overflow: hidden;
}

.rating {
    font-size: 18px;
    color: #ffca08;
    margin-bottom: 10px;
}

.rating span {
    color: var(--text-muted);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-weight: 700;
    color: var(--accent-purple);
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
}

.btn-add-cart {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.btn-add-cart:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(110, 87, 224, 0.5);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    gap: 15px;
}

.slider-controls i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-controls i:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: white;
}

/* Flex Slider */
.products-grid.flex-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: none;
    /* Firefox */
}

.products-grid.flex-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.products-grid.flex-slider .product-card {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}



.quick-actions i {
    background: white;
    color: #131333;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.quick-actions i:hover {
    background: var(--accent-purple);
    color: white;
}

/* Deals Section */
.deals-section {
    background: #08081a;
    padding: 60px 0;
}

.deal-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.deal-card img {
    width: 40%;
}

.deal-content {
    flex: 1;
}

.progress-bar {
    background: #131333;
    height: 8px;
    border-radius: 4px;
    margin: 10px 0 20px;
}

.progress {
    background: linear-gradient(90deg, #6e57e0, #2ed573);
    height: 100%;
    border-radius: 4px;
}

.countdown {
    display: flex;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-purple);
}

/* Mobile Side Menu */
.mobile-side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-header);
    z-index: 1000;
    transition: 0.4s;
    padding: 30px;
}

.mobile-side-menu.active {
    left: 0;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.side-nav-links li {
    margin-bottom: 20px;
}

.side-nav-links li a {
    font-size: 18px;
    font-weight: 500;
}

/* Mobile Header Styles */
.mobile-header {
    background: var(--bg-header);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Responsive */
.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}





/* Icons using background-image SVGs */
.icon-track {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 3h15V17H1z'%3E%3C/path%3E%3Cpath d='M16 8h4l3 3v6h-7V8z'%3E%3C/path%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-wishlist {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l8.84-8.84 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-down {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-user {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-cart {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'%3E%3C/circle%3E%3Ccircle cx='20' cy='21' r='1'%3E%3C/circle%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'%3E%3C/path%3E%3C/svg%3E");
}

.icon-menu {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='21' y2='12'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='21' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.icon-left {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-right {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-heart {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l8.84-8.84 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-eye {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-shipping {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'%3E%3C/rect%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'%3E%3C/polygon%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-bag {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'%3E%3C/path%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'%3E%3C/path%3E%3C/svg%3E");
}

.icon-support {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3Cline x1='12' y1='15' x2='12' y2='3'%3E%3C/line%3E%3C/svg%3E");
}

.icon-return {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 4 1 10 7 10'%3E%3C/polyline%3E%3Cpath d='M3.51 15a9 9 0 1 0 2.13-9.36L1 10'%3E%3C/path%3E%3C/svg%3E");
}

.icon-discount {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9.5' cy='9.5' r='1.5'%3E%3C/circle%3E%3Ccircle cx='14.5' cy='14.5' r='1.5'%3E%3C/circle%3E%3Cline x1='16' y1='8' x2='8' y2='16'%3E%3C/line%3E%3Cpath d='M19 12c.5 1 2 1.5 3 2v5c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-5c1-.5 2.5-1 3-2 .5-1 0-2.5 0-3.5V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v4.5c0 1-.5 2.5 0 3.5Z'%3E%3C/path%3E%3C/svg%3E");
}

[class^="icon-"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    vertical-align: middle;
}

.icon-link i {
    width: 24px;
    height: 24px;
}

/* Footer Styles */
footer {
    margin-top: 2rem;
    position: relative;
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 100px;
}

footer a {
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    padding: 35px 20px;
    padding-top: 20px;
    margin-right: 40px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-cont {
    width: 100%;
    display: flex;
    color: white;
    font-size: 26px;
    gap: 80px;
    padding-bottom: 35px;
    border-bottom: 2px solid gray;
    position: relative;
}

.foot-cont-one {
    display: flex;
    gap: 80px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid gray;

    color: rgb(168, 167, 167);
}

footer svg {
    fill: rgba(255, 255, 255, 0.842);
    stroke-miterlimit: 10;
    stroke-width: 1px;
    width: 40px;
}

.city {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

.cont-col {
    display: flex;
    flex-direction: column;
}

.cont-col:first-child {
    color: rgb(168, 167, 167);
}

.cont-col:first-child a:first-child {
    color: white;
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-cont-two div {
    align-items: center;
    display: flex;
    gap: 20px;
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    font-size: 20px;
}

.foot-cont-three p:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.foot-cont-three p {
    position: relative;
    padding-right: 16px;
}

.foot-cont-three p::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.foot-cont-three p.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
    display: none;
}

.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    border-bottom: 2px solid gray;
}



/* More Icons */
.icon-facebook {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-twitter {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-instagram {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.secondary {
    background-color: #5c47cf;
}

/* Full Width Banner */
.full-banner {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: linear-gradient(135deg, #0b0b22 0%, #1a1a3d 100%);
    margin: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-text {
    flex: 1;
    padding-right: 60px;
}

.banner-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 800;
}

.banner-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.banner-img-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.banner-img-right img {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 0 50px rgba(110, 87, 224, 0.3));
    transition: 0.5s;
}

.banner-img-right img:hover {
    transform: scale(1.05);
}





/* Blur Creative Section */
.blur-creative-section {
    padding: 60px 0;
}

.blur-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blur-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gradient-cyan {
    background: linear-gradient(135deg, #0b0b22 0%, #004e92 100%);
}

.gradient-purple-blue {
    background: linear-gradient(135deg, #0b0b22 0%, #4b0082 100%);
}

.blur-content {
    flex: 1;
    z-index: 2;
}

.blur-content h3 {
    font-size: 32px;
    line-height: 1.2;
    margin: 15px 0;
    font-weight: 800;
}

.blur-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 250px;
}

.blur-card img {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    height: 110%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
    transition: 0.5s;
}

.blur-card:hover img {
    right: 0px;
    transform: translateY(-50%) rotate(-5deg);
}



/* ==========================================================================
   Responsive Consolidated Queries
   ========================================================================== */

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 1024px) {

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

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

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

    .hero-slider {
        padding: 30px;
        min-height: 400px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .products-grid.flex-slider .product-card {
        min-width: calc(50% - 15px);
    }

    .blur-card {
        padding: 30px;
        height: 300px;
    }

    .blur-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    .brand-card{
        flex-direction: column;
    }

    .show-mobile {
        display: block !important;
    }

    .container {
        padding: 0 15px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-6,
    .grid-8 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .slide {
        flex-direction: column;
    }



    .top-bar {
        display: none;
    }

    .hero-slider {
        padding: 40px 20px;
        flex-direction: column;
        text-align: center;
        min-height: unset;
    }

    .slide-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .slide-image img {
        margin: 30px auto 0;
        max-width: 80%;
    }

    .section-header.flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .products-grid.flex-slider .product-card {
        min-width: 100%;
    }

    .banner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 80px;
        min-height: unset;
    }

    .banner-card img {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        max-width: 250px;
        margin: 30px auto 0;
    }

    .ad-btn {
        bottom: 20px;
        top: auto;
    }

    .full-banner {
        padding: 50px 0;
        margin: 40px 0;
    }

    .full-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .banner-text h1 {
        font-size: 32px;
    }

    .banner-text p {
        margin: 0 auto 30px;
    }

    .banner-img-right {
        justify-content: center;
    }

    .banner-img-right img {
        max-height: 300px;
    }

    .blur-card {
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .blur-content p {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .blur-card img {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        height: 250px;
        margin-top: 20px;
    }

    footer {
        padding: 40px 15px;
        text-align: center;
    }

    .footer-cont {
        flex-direction: column;
        gap: 40px;
        font-size: 18px;
    }

    .foot-cont-one {
        gap: 30px;
    }

    .foot-cont-two {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .foot-cont-three {
        flex-direction: column;
        align-items: center;
    }

    .social {
        justify-content: center;
    }

    .warn {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 28px;
    }

    .badge {
        font-size: 16px;
    }



    .banner-card img {
        max-width: 100%;
    }

    .modal-content {
        padding: 20px;
        margin: 15px;
    }
}

/* Mobile Nav improvements */
.mobile-side-menu {
    overflow-y: auto;
}

@media (max-width: 400px) {
    .img {
        width: 220px;
    }
}

@media (min-width: 400px) and (max-width: 768px) {
    .img {
        width: 220px;
    }

}

@media (min-width: 1200px) {
    .grid-6 {
        grid-template-columns: repeat(3, 2fr);
    }
}

/* Description Section Styling */
.description-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.description-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.desc-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.desc-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.desc-item h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.desc-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.desc-item.hidden {
    display: none;
}

.btn-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
    gap: 8px;
    background: var(--accent-purple);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    font-size: 16px;
}

.btn-more:hover {
    background: var(--btn-purple);
    box-shadow: 0 0 20px rgba(110, 87, 224, 0.4);
    transform: translateY(-2px);
}

.btn-more i {
    width: 20px;
    height: 20px;
    background-color: white;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: transform 0.3s ease;
}

.btn-more.active i {
    transform: rotate(180deg);
}

/* Responsive fixes for description grid */
@media (max-width: 992px) {
    .description-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .description-grid {
        grid-template-columns: 1fr;
    }

    .description-section {
        padding: 40px 0;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-desc {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.5;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
    align-items: stretch;
}

.brand-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    min-height: 205px;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    border-color: var(--accent-purple);
}

.brand-logo {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    border-radius: 10px;
    padding: 8px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(110, 87, 224, 0.12));
}

.brand-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-white);
}

.brand-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .brand-logo {
        width: 68px;
        height: 68px;
        flex: 0 0 68px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        padding: 14px;
        gap: 12px;
    }

    .brand-logo {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
    }
}