:root {
    --primary-color: #003092;
    --primary-hover: #002570;
    --secondary-color: #00cec9;
    --dark-color: #2d3436;
    --light-color: #f7f7f7;
    --gray-color: #b2bec3;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #ff7675;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;

   --purple-pizzazz: #4e68a0;
    --raisin-black-1: #2b2626;
    --raisin-black-2: #0d1b2a;
    --white: #FFFFFF;
    --white-2: #EEEEEE;
    --light-gray: #CCCCCC;
    --section-padding: 80px;
    --fs-3: 2.4rem;
    --fs-8: 1.4rem;
    --shadow-1: 0 4px 15px rgba(0, 0, 0, 0.2);
    --transition-1: all 0.25s ease;
}

* {
    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-color);
    background-color: #183B4E;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

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

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

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Utility Classes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #EEEEEE;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
}

.announcement-content p {
    margin: 0;
}

/* Header */

.site-header {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background-color: #25394e;
    z-index: 1000;
}

.navbar-brand h1 {
    font-size: 1.8rem;
    margin: 0;
    color: aliceblue;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #FAFAFA;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4361ee;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #4361ee;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: #4361ee;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.dropdown-toggle::after {
    vertical-align: middle;
    border-top: 0.3em solid;
}

.mega-menu {
    width: 75%;
    border-radius: 0 40px;
    margin-top: 0;
    padding: 20px 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mega-menu h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4361ee;
}

.mega-menu ul li {
    padding: 5px 0;
}

.mega-menu ul li a {
    color: var(--text-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mega-menu ul li a:hover {
    color: #4361ee;
    padding-left: 5px;
}

.featured-menu-image {
    text-align: center;
}

.featured-menu-image img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured-menu-image p {
    font-size: 0.9rem;
    font-weight: 500;
}

.header-icons {
    display: flex;
    align-items: center;
}

.icon-link {
    font-size: 1.2rem;
    color: #EEEEEE;
    margin-left: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #4361ee;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #F5EFE7;
    color: rgb(235, 33, 7);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
    min-height: 500px;
}

/* Global Floating Icons Background */

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    font-size: 24px;
    color: #ffffff;
    animation: float 15s linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.floating-icon.controller {
    top: 10%;
    left: 15%;
    font-size: 30px;
    animation-duration: 20s;
}

.floating-icon.console {
    top: 70%;
    left: 25%;
    font-size: 28px;
    animation-delay: 2s;
    animation-duration: 18s;
}

.floating-icon.headset {
    top: 30%;
    left: 80%;
    font-size: 32px;
    animation-delay: 5s;
    animation-duration: 22s;
}

.floating-icon.trophy {
    top: 60%;
    left: 75%;
    font-size: 26px;
    animation-delay: 1s;
    animation-duration: 17s;
}

.floating-icon.rocket {
    top: 20%;
    left: 50%;
    font-size: 24px;
    animation-delay: 7s;
    animation-duration: 25s;
}

.floating-icon.dice {
    top: 80%;
    left: 10%;
    font-size: 22px;
    animation-delay: 4s;
    animation-duration: 19s;
}

.floating-icon.joystick {
    top: 40%;
    left: 30%;
    font-size: 28px;
    animation-delay: 3s;
    animation-duration: 21s;
}

.floating-icon.vr {
    top: 15%;
    left: 70%;
    font-size: 26px;
    animation-delay: 6s;
    animation-duration: 23s;
}

.floating-icon.sword {
    top: 65%;
    left: 45%;
    font-size: 30px;
    animation-delay: 8s;
    animation-duration: 24s;
}

.floating-icon.shield {
    top: 35%;
    left: 5%;
    font-size: 29px;
    animation-delay: 9s;
    animation-duration: 26s;
}

.floating-icon.disc {
    top: 25%;
    left: 60%;
    font-size: 25px;
    animation-delay: 5s;
    animation-duration: 23s;
}

.floating-icon.star {
    top: 85%;
    left: 40%;
    font-size: 27px;
    animation-delay: 3s;
    animation-duration: 22s;
}

.floating-icon.gift {
    top: 45%;
    left: 85%;
    font-size: 28px;
    animation-delay: 1s;
    animation-duration: 20s;
}

.floating-icon.fire {
    top: 75%;
    left: 65%;
    font-size: 30px;
    animation-delay: 6s;
    animation-duration: 23s;
}

.floating-icon.coin {
    top: 55%;
    left: 20%;
    font-size: 26px;
    animation-delay: 3s;
    animation-duration: 18s;
}

.floating-icon.lightning {
    top: 25%;
    left: 35%;
    font-size: 32px;
    animation-delay: 5s;
    animation-duration: 24s;
}

.floating-icon.diamond {
    top: 90%;
    left: 75%;
    font-size: 30px;
    animation-delay: 7s;
    animation-duration: 26s;
}

.floating-icon.clock {
    top: 15%;
    left: 90%;
    font-size: 28px;
    animation-delay: 2s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.1;
    }

    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-30px) rotate(180deg) scale(1);
        opacity: 0.1;
    }

    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
        opacity: 0.15;
    }

    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

.hero-slider {
    position: relative;
    z-index: 2;
}

.hero-slide {
    display: none;
    padding: 30px 0;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-content {
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #FFFFFF, #70e1f5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #9ca3af;
    font-weight: 400;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #4361ee, #7209b7);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid #4361ee;
    color: #4361ee;
}

.btn-outline:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

.glow-effect {
    position: absolute;
    width: 80%;
    height: 40%;
    background: rgba(67, 97, 238, 0.4);
    filter: blur(70px);
    bottom: 0;
    left: 10%;
    z-index: 1;
}

.hero-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: #FFFFFF;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Section Backgrounds */
.hero-section,
.categories-section,
.featured-products,
.promo-banner,
.trending-products,
.product-showcase-section,
.testimonials-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-section {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
}

.categories-section {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
}

.featured-products {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.promo-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.trending-products {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
    padding: 20px 0;
}

.product-showcase-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.testimonials-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Floating Icons in Sections */
.trending-products .floating-icons,
.product-showcase-section .floating-icons,
.testimonials-section .floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* Additional Icon Positions for New Sections */
.trending-products .floating-icon.controller {
    top: 15%;
    left: 10%;
    animation-duration: 23s;
}

.trending-products .floating-icon.console {
    top: 70%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.trending-products .floating-icon.headset {
    top: 25%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.trending-products .floating-icon.trophy {
    top: 65%;
    left: 85%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.trending-products .floating-icon.rocket {
    top: 30%;
    left: 45%;
    animation-delay: 7s;
    animation-duration: 22s;
}

.trending-products .floating-icon.dice {
    top: 75%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.product-showcase-section .floating-icon.joystick {
    top: 20%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 24s;
}

.product-showcase-section .floating-icon.vr {
    top: 65%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 21s;
}

.product-showcase-section .floating-icon.sword {
    top: 15%;
    left: 75%;
    animation-delay: 8s;
    animation-duration: 26s;
}

.product-showcase-section .floating-icon.shield {
    top: 70%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 19s;
}

.product-showcase-section .floating-icon.disc {
    top: 40%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 23s;
}

.product-showcase-section .floating-icon.star {
    top: 80%;
    left: 40%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.testimonials-section .floating-icon.gift {
    top: 20%;
    left: 12%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.testimonials-section .floating-icon.fire {
    top: 65%;
    left: 22%;
    animation-delay: 6s;
    animation-duration: 23s;
}

.testimonials-section .floating-icon.coin {
    top: 25%;
    left: 78%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.testimonials-section .floating-icon.lightning {
    top: 70%;
    left: 88%;
    animation-delay: 5s;
    animation-duration: 24s;
}

.testimonials-section .floating-icon.diamond {
    top: 35%;
    left: 55%;
    animation-delay: 7s;
    animation-duration: 26s;
}

.testimonials-section .floating-icon.clock {
    top: 80%;
    left: 65%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.cart-sidebar .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.cart-sidebar .floating-icon {
    position: absolute;
    opacity: 0.1;
    font-size: 24px;
    color: #ffffff;
    animation: float 15s linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cart-sidebar .floating-icon.controller {
    top: 15%;
    left: 10%;
    animation-duration: 23s;
}

.cart-sidebar .floating-icon.console {
    top: 70%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.cart-sidebar .floating-icon.headset {
    top: 25%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.cart-sidebar .floating-icon.trophy {
    top: 65%;
    left: 85%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.cart-sidebar .floating-icon.rocket {
    top: 30%;
    left: 45%;
    animation-delay: 7s;
    animation-duration: 22s;
}

.cart-sidebar .floating-icon.dice {
    top: 75%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 20s;
}

/* Categories Section */
.categories-section {
    padding: 70px 0 50px;
    position: relative;
}

.category-card {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover .category-image::before {
    opacity: 1;
}

.category-image img {
    transition: transform 0.6s ease;
}

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

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 10px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover h3 {
    color: #4361ee;
}

.glow-effect {
    position: absolute;
    width: 80%;
    height: 40%;
    background: rgba(67, 97, 238, 0.4);
    filter: blur(40px);
    bottom: -10px;
    left: 10%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .glow-effect {
    opacity: 1;
}

/* UPCOMING MATCHES SECTION */

.upcoming .section-subtitle {
  color: var(--purple-pizzazz);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
}

.upcoming .section-title {
  color: var(--white);
  margin-bottom: 15px;
}

.upcoming .section-title .span {
  color: var(--purple-pizzazz);
}

.upcoming .section-text {
  color: var(--light-gray);
  text-align: center;
  margin-bottom: 40px;
}

.upcoming-list {
  display: grid;
  gap: 30px;
}

.upcoming-item {
  background: var(--raisin-black-2);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
}

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

.upcoming-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--purple-pizzazz));
  opacity: 0.1;
}

.upcoming-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.upcoming-card.has-before::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--purple-pizzazz);
  opacity: 0.5;
}

.upcoming-card .card-banner {
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.upcoming-card .card-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 5px;
}

.upcoming-card .card-meta {
  color: var(--light-gray);
  font-size: 15px;
  opacity: 0.8;
}

.upcoming-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.upcoming-time .time {
  color: var(--purple-pizzazz);
  font-size: var(--fs-3);
  font-weight: 700;
  margin-bottom: 5px;
}

.upcoming-time .date {
  color: var(--white-2);
  font-size: var(--fs-8);
  margin-bottom: 15px;
}

.social-wrapper {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--white);
  font-size: 18px;
  transition: var(--transition-1);
}

.social-link:hover {
  color: var(--purple-pizzazz);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .upcoming-item {
    flex-direction: column;
    text-align: center;
  }
  
  .upcoming-time {
    margin: 20px 0;
    order: 1;
  }
  
  .upcoming-card.left {
    order: 0;
  }
  
  .upcoming-card.right {
    order: 2;
  }
}

@media (max-width: 480px) {
  .upcoming-card {
    padding: 15px 10px;
  }
  
  .upcoming-time {
    padding: 0 10px;
  }
}


/* Product Cards */
.featured-products {
    padding: 70px 0 50px;
    position: relative;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FFD700;
    color: #000000;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-badge.best-seller {
    background-color: #10B981;
    color: white;
}

.product-badge.sale {
    background-color: #EF4444;
    color: white;
}

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

.product-image img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4361ee;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: #2937f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #111827;
}

.product-category {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #4361ee;
}

.original-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-weight: normal;
    font-size: 0.9rem;
    margin-right: 8px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #4361ee;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-outline:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

/* Banner Section */
.promo-banner {
    padding: 70px 0;
    position: relative;
}

.promo-card {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: white;
    height: 220px;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.promo-card.special {
    background: linear-gradient(to right, #14b8a6, #0ea5e9);
}

.promo-content {
    padding: 30px;
    width: 60%;
    z-index: 2;
}

.promo-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.promo-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1rem;
}

.promo-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    overflow: hidden;
}

.promo-image img {
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

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

.promo-card .glow-effect {
    position: absolute;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(40px);
    bottom: -20px;
    right: -20px;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.promo-card:hover .glow-effect {
    opacity: 0.7;
}

.btn-light {
    background: #ffffff;
    color: #111827;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .promo-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .promo-image {
        opacity: 0.2;
        width: 100%;
    }

    .promo-card {
        height: auto;
        padding: 30px 0;
    }

    .category-card h3 {
        font-size: 1rem;
    }
}

/* Featured Product (Left Side) */
.featured-product {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.featured-image {
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.featured-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.featured-product:hover .featured-image img {
    transform: scale(1.05);
}

.featured-info {
    padding: 20px;
}

.featured-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #EEEEEE;
}

.featured-info .description {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.featured-info .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Product Grid 
/* Product Showcase Section */
.product-showcase-section {
    padding: 60px 0;
    background-color: #3E5879;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Right side thoda bada */
    gap: 30px;
    align-items: center;
}

/* Featured Product (Left Side) */
.featured-product {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.featured-image {
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.featured-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
    aspect-ratio: 16 / 9;
    /* Aspect ratio maintain karega */
    object-fit: cover;
    /* Image fit ho jayegi */
}

.featured-product:hover .featured-image img {
    transform: scale(1.03);
    /* Kam scale on hover */
}

.featured-info {
    padding: 20px;
}

.featured-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(48, 45, 45);
}

.featured-info .description {
    color: grey;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.featured-info .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    /* Kam margin */
}

/* Product Grid (Right Side) */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    grid-gap: 15px;
    /* Kam gap */
}

.product-card-small {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: transform 0.2s ease-in-out;
    display: flex;
    /* Flexbox use karenge */
    flex-direction: column;
    height: 230px;
    /* Fixed height for cards */
}

.product-card-small:hover {
    transform: translateY(-3px);
    /* Kam translate */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    /* Kam shadow */
}

.product-card-small .card-image {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    /* Image will take available space */
}

.product-card-small .card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Image will cover the area */
    transition: opacity 0.2s ease-in-out;
}

.product-card-small .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    text-align: center;
    padding: 15px;
}

.product-card-small:hover .card-image img {
    opacity: 0.6;
}

.product-card-small:hover .overlay {
    opacity: 1;
}

.product-card-small .overlay h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card-small .overlay p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .product-showcase-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }

    .product-card-small {
        height: auto;
    }
}



/* Testimonials */
.testimonials-section {
        padding: 70px 0;
        text-align: center;
        position: relative;
        background-color: #f8f9fa;
    }

    .custom-carousel {
        position: relative;
        margin: 0 auto;
        max-width: 1000px;
    }

    .carousel-container {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        width: 100%;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    .carousel-slide {
        min-width: 100%;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        padding: 20px;
    }

    .carousel-slide.active {
        opacity: 1;
    }

    .testimonial-card {
        background: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-width: 800px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 250px;
        justify-content: space-between;
    }

    .testimonial-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-bottom: 20px;
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .testimonial-text {
        font-size: 1rem;
        color: #333;
        margin-bottom: 20px;
        line-height: 1.6;
        font-style: italic;
    }

    .testimonial-name {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .testimonial-designation {
        font-size: 0.9rem;
        color: #6c757d;
    }

    /* Controls */
    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: rgba(86, 50, 187, 0.5);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .carousel-control:hover {
        background-color: rgba(0,0,0,0.8);
    }
    
    .carousel-control.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    .carousel-indicators {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        bottom: 25px !important;
    }

    .carousel-indicators .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .carousel-indicators .indicator.active {
        background-color: #0d6efd;
    }

    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }

    /* Custom colors for each card */
    .carousel-slide:nth-child(1) .testimonial-card {
        border-left: 4px solid #FF6B6B;
    }

    .carousel-slide:nth-child(2) .testimonial-card {
        border-left: 4px solid #42A5F5;
    }

    .carousel-slide:nth-child(3) .testimonial-card {
        border-left: 4px solid #66BB6A;
    }

    .carousel-slide:nth-child(1) .testimonial-name {
        color: #FF6B6B;
    }

    .carousel-slide:nth-child(2) .testimonial-name {
        color: #42A5F5;
    }

    .carousel-slide:nth-child(3) .testimonial-name {
        color: #66BB6A;
    }

    @media (max-width: 768px) {
        .carousel-control {
            width: 40px;
            height: 40px;
        }
        
        .carousel-control-prev {
            left: 10px;
        }
        
        .carousel-control-next {
            right: 10px;
        }

        .testimonial-card {
            padding: 20px;
        }
    }









/* Footer */
.site-footer {
    background-color: #25394e;
    color: white;
    padding: 70px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-widget h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-widget p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

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

.social-links a:hover {
    background-color: #F5EFE7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #213448;
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.payment-methods span {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 15px;
    font-size: 0.9rem;
}

.payment-methods img {
    margin-left: 10px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-cart {
    background: none;
    font-size: 1.2rem;
    color: #EEEEEE;
    transition: color var(--transition-speed) ease;
}

.close-cart:hover {
    color: var(--danger-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.empty-cart p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.total-price {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 48, 146, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-light {
    background-color: white;
    color: #EEEEEE;
}

.btn-light:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .mega-menu {
        position: static;
        padding: 10px 0;
    }

    .featured-menu-image {
        display: none;
    }

    .promo-content {
        width: 100%;
    }

    .promo-image {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .payment-methods {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .newsletter-wrapper {
        padding: 30px 20px;
    }

    .newsletter-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}