/*!
Theme Name: imcosports
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: imcosports
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

imcosports is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

:root {
  --primary-color: #d4af37; /* Metallic Gold Accent */
  --secondary-color: #1a1a1a; /* Deep Charcoal */
  --accent-color: #e63946; /* Sporty Red */
  --bg-dark: #0f0f0f;
}

body {
  font-family: "Roboto", sans-serif;
  /* background-color: rgba(255, 255, 255, 1); */
  color: rgba(0, 0, 0, 1);
  margin: 0;
  padding: 0;
}
.hero-section {
  padding-top: 0;
}

h1,
h2,
h3,
.navbar-brand {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Top Strip */
.top-strip {
  background-color: #e63946;
  padding: 10px 0;
  font-size: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-strip-left {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.top-strip-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.top-strip-item {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.top-strip-item:hover {
  opacity: 0.8;
  color: #ffffff;
}

.top-strip-item i {
  font-size: 0.9rem;
}

.top-strip-social {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
  color: #ffffff;
}

/* Navbar Styling */
.navbar {
  background-color: transparent !important;
  background: transparent !important;
  border-bottom: none;
  padding: 2rem 0;
  transition: all 0.4s ease;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: rgba(15, 31, 45, 0.95) !important;
  background: rgba(15, 31, 45, 0.95) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-dark {
  background-color: transparent !important;
}

/* Logo Styling */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 120px;
  /* height: 50px;             */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  font-size: 24px;
  color: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e63946;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand span {
  color: var(--primary-color);
  font-weight: 700;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #e63946;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover:after {
  width: 80%;
}

.nav-link:hover {
  color: #e63946 !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background-color: rgba(15, 31, 45, 0.98);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: #fff;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #e63946;
  color: #fff;
}

/* Navigation Icons */
.nav-icons {
  margin-left: 20px;
}

.nav-icon-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon-link:hover {
  color: #e63946;
}

.nav-icon-link .badge-notify {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #e63946;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.cart-icon .cart-text {
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
}

/* Slider / Carousel Styling */
.carousel-item {
  height: 100vh;
  min-height: 100vh;
  background-color: #000;
  position: relative;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}


.category-circle-item a {
    text-decoration: none;
}
.carousel-caption {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  max-width: 600px;
}

.hero-subtitle-cursive {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: rgba(237, 28, 36, 1);
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-new {
  /* font-family: 'Oswald', sans-serif; */
  font-size: 60px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 110%;
  margin-top: 20px;
  margin-bottom: 40px;
  font-family: Anton;
}

.btn-shop-now {
  background-color: #e63946;
  color: #fff;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-shop-now:hover {
  background-color: #dc2f3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
  color: #fff;
}

/* Wave Bottom Effect */
.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 3;
  background-image: url("http://imcosports.com/wp-content/uploads/2026/01/wave.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 4;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #e63946;
  border-color: #e63946;
}

.carousel-control-prev-icon-custom,
.carousel-control-next-icon-custom {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev-icon-custom i,
.carousel-control-next-icon-custom i {
  font-size: 30px;
  color: #fff;
}

.carousel-caption {
  /*bottom: 30%;*/
  text-align: left;
  z-index: 10;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--primary-color);
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.btn-custom {
  background-color: var(--primary-color);
  color: black;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 0;
  border: none;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-custom:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin: 0 8px;
}

/* Product Cards */
.product-card {
  background: #1a1a1a;
  border: 1px solid #333;
  transition: 0.3s;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.product-img-container {
  height: 250px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
}

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

/* Category Cards */
.category-card {
  position: relative;
  overflow: hidden;
  border: none;
  height: 400px;
  margin-bottom: 20px;
  cursor: pointer;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 2rem;
  transition: 0.3s;
}

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

/* Features Section */
.feature-box {
  background: #1a1a1a;
  padding: 40px;
  border-bottom: 4px solid var(--primary-color);
  height: 100%;
  transition: 0.3s;
}

.feature-box:hover {
  background: #252525;
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.newsletter-content-section {
  background-color: rgba(34, 34, 34, 1);
}

/* Equipment Section */
.equipment-section {
  background-color: rgba(217, 217, 217, 1);
  padding-top: 5rem;
}

.equipment-card {
  position: relative;
  /*height: 450px; */
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}

.equipment-img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* .equipment-card:hover .equipment-img {
  transform: scale(1.05);
} */

.equipment-overlay {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding: 40px;  
  z-index: 2;
}

.equipment-title {
  font-family: 'Anton';
    font-size: 50px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.equipment-subtitle {
  font-family: Roboto;
font-weight: 700;
font-style: Bold;
font-size: 20px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 6%;
text-transform: uppercase;
text-decoration: underline;
text-decoration-style: solid;
text-decoration-offset: 0%;
text-decoration-thickness: 0%;
color: #FFFFFF;
}

.equipment-badge {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
}

/* Shop by Categories Section */
.shop-categories-section {
  background-color: #d9d9d9;
  color: #000;
}

.categories-heading {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.category-circle-item {
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.category-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  background-color: #fff;
  border: 3px solid #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-circle:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-label {
  font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(29, 29, 29, 1);
    margin-top: 10px;
    margin-bottom: 0;
}

a.category-label {
    text-decoration: none !important;
}

a.category-label:hover {
    text-decoration: none;
}



/* Best Selling Product Section */
.selling-container {
  position: relative;
  overflow: hidden;
  background-color: rgba(34, 34, 34, 1);
}

.best-selling-section {
  background-color: #d9d9d9;
  position: relative;
  overflow: hidden;
}

.best-selling-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("http://imcosports.com/wp-content/uploads/2026/01/bestbefore.png");
  background-size: cover;
  z-index: 1;
}

.best-selling-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("http://imcosports.com/wp-content/uploads/2026/01/bestafter.png");
  background-size: cover;
  z-index: 1;
}

.best-selling-section::before {
  top: 0;
}

.best-selling-section::after {
  bottom: 0;
}

.best-selling-subtitle {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: rgba(237, 28, 36, 1);
  margin-bottom: 0;
}

.best-selling-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.product-slider-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slide-card {
  flex: 0 0 280px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.product-slide-img {
  height: 220px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-slide-content {
  padding: 20px;
  text-align: center;
}

.product-slide-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  min-height: 60px;
}

.product-slide-price {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.btn-add-cart {
  background-color: #e63946;
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-add-cart:hover {
  background-color: #d62839;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  color: #000;
}

.slider-arrow i {
  font-size: 1.5rem;
  color: #333;
}

.slider-arrow:hover i {
  color: #000;
}

.slider-arrow-left {
  left: -20px;
}

.slider-arrow-right {
  right: -20px;
}
.why-choose {
  background: #d9d9d9;
  position: relative;
  overflow: hidden;
}

/* Why Choose Us Section */
.why-choose-section {
  background-image: url("http://imcosports.com/wp-content/uploads/2026/01/whyshoose.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.88) 100%
  );
  z-index: 1;
}
.whybg {
  background-image: none;
}

.blogbg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background-image: url("http://imcosports.com/wp-content/uploads/2026/01/blogabove.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  pointer-events: none;
  z-index: 2;
}

.why-choose-section .container {
  z-index: 3;
}

.why-choose-subtitle {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: rgba(237, 28, 36, 1);
  margin-bottom: 0;
}

.why-choose-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.why-feature {
  padding: 20px;
  transition: transform 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-10px);
}

.why-icon {
  width: 80px;
  height: 80px;
  background-color: #e63946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.why-feature:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.why-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.why-feature-title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.why-feature-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0;
}

/* News & Updates Section */
.news-updates-section {
  background-color: #d9d9d9;
  padding-top: 2.5rem !important;
  padding-bottom: 3rem !important;
}

.news-subtitle {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: rgba(237, 28, 36, 1);
  margin-bottom: 0;
}

.news-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.blog-card {
  /*background-color: #ffffff;*/
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #e63946;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
  z-index: 2;
}

.badge-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-excerpt {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: #e63946;
}

/* About Us Red Section */
.about-red-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;

  background-color: #e63946;
  background-image: url("https://imcosports.com/wp-content/uploads/2026/01/aboutus.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-red-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  /*background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><path d="M0,0 Q100,30 200,15 T400,20 Q500,10 600,25 T800,15 Q900,30 1000,10 T1200,20 L1200,60 L0,60 Z" fill="%23e63946"/></svg>');*/
  background-size: cover;
  background-position: bottom;
  transform: translateY(-59px);
  z-index: 1;
}

.about-red-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><path d="M0,40 Q100,10 200,25 T400,20 Q500,30 600,15 T800,25 Q900,10 1000,30 T1200,20 L1200,60 L0,60 Z" fill="%23e63946"/></svg>');
  background-size: cover;
  background-position: top;
  transform: translateY(59px);
  z-index: 1;
}

.about-red-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.2) 2px,
    transparent 2px
  );
  background-size: 15px 15px;
  opacity: 0.3;
  z-index: 1;
}

.about-red-section .container {
  z-index: 2;
}

.about-red-img-wrapper {
  position: relative;
  z-index: 2;
}

.about-red-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.about-red-img:hover {
  transform: scale(1.05);
}

.about-red-content {
  color: #ffffff;
}

.about-red-subtitle {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 0;
}

.about-red-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-red-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-learn-more {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 35px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.btn-learn-more:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Adjustments */

.shopoverlay {
  background-image: url("http://imcosports.com/wp-content/uploads/2026/01/shopoverlay.png");
  position: relative;
}

.shop-banner {
  height: 420px;
  overflow: hidden;
}

.shop-banner .banner-img {
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.shop-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background-image: url("http://imcosports.com/wp-content/uploads/2026/01/shopoverlay.png");
  background-repeat: no-repeat;
  /*background-size: cover;*/
  background-position: bottom;
}

/* Content */
.shop-banner .banner-content {
  z-index: 2;
  width: 100%;
}

.shop-banner .shop-title {
  font-family: "Anton", sans-serif;
  font-size: 56px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  font-size: 14px;
  color: #ddd;
}

.breadcrumb-wrapper a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-wrapper a:hover {
  color: #e10600;
}

.breadcrumb-wrapper span {
  margin: 0 6px;
}

.breadcrumb-wrapper .active {
  color: #e10600;
}

.bg-shop {
  background: #d9d9d9;
}

#main {
  background: #d9d9d9;
}

/*********************************/

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  flex: 0 0 280px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

h2.woocommerce-loop-product__title {
  font-size: 14px !important;
  color: rgba(0, 0, 0, 1);
  line-height: 20px;
  text-transform: capitalize;
}
span.price {
  text-align: left !important;
  font-size: 18px;
  font-weight: 600;
}

.woocommerce ul.products li.product .price ins {
  background: 0 0;
  font-weight: 700;
  display: inline-block;
  color: #717171;
}

.woocommerce ul.products li.product .button {
  display: block;
  /* margin-top: 1em; */
  margin: 0px 10px 10px 10px;
  text-align: center;
  background: rgba(237, 28, 36, 1);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  /* margin-bottom: 10px; */
}
.woocommerce ul.products li.product .price del {
  color: #ed1c24;
  opacity: 9;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0 1.8% 2.992em 0;
}
.woocommerce ul.products li.product .onsale {
  right: auto;
}
.woocommerce ul.products li.product a {
  padding: 10px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 23.05%;
  margin: 0 2% 2.992em 0;
}
.woocommerce ul.products li.product .onsale {
  right: auto;
}
.bg-shop aside li a {
  color: #000;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.woocommerce .woocommerce-result-count {
  color: #504f4f;
  font-family: Lato;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.woocommerce .woocommerce-ordering select {
  vertical-align: top;
  padding: 10px 0 10px;
  font-family: Lato;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #000;
}
h1.woocommerce-products-header__title.page-title {
  font-family: Anton;
  font-weight: 400;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
}
.woocommerce .product form.cart button.single_add_to_cart_button {
  height: 50px !important;
  border: none;
  outline: none;
  padding: 0 12px;
  background: #f02326;

  padding-right: 47px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Rubik", sans-serif;
}
.qib-container {
  position: relative;
  border: 0;
  background: #f1f1f1;
  border-radius: 70px;
}
.qib-container button.minus.qib-button {
  bottom: 0;
  width: 45px !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer;
  height: 46px !important;
}
.qib-container button.plus.qib-button {
  right: 0;
  top: 0;
  width: 45px !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer;
  height: 46px !important;
}
.qib-container .quantity.buttons_added input.qty {
  border: none !important;
  font-size: 20px !important;
  color: #000;
  height: 46px !important;
}

.entry-summary .product_title.entry-title {
  font-family: Anton;
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  line-height: 60px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #1d1d1d;
}

.woocommerce .price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.woocommerce .price ins {
  order: 1; /* Current price first */
}

.woocommerce .price del {
  order: 2; /* Original price after */
}

.buy-now-button {
  margin-top: 10px;
  background-color: rgba(217, 217, 217, 1) !important;
  border: 1px solid #e63946 !important;
  color: #e63946 !important;
  padding: 20px 36px 30px 36px !important;
  margin-left: 22px !important;
}

.buy-now-button:hover {
  /* background-color: #c92f3b !important; */
}

.woocommerce-product-details__short-description {
  font-family: Roboto;
  font-weight: 400 !important;
  font-style: Regular !important;
  font-size: 20px !important;
  line-height: 35px !important;
  letter-spacing: 0%;
  color: rgba(69, 69, 69, 1) !important;
}
span.onsale {
  display: none !important;
}

.product-review-count {
  margin: 5px 0 10px;
  font-size: 14px;
}

.product-review-count a {
  text-decoration: none;
}

ul.tabs.wc-tabs {
  background: rgba(40, 40, 40, 1) !important;
  padding: 10px !important;
}

.woocommerce-tabs.wc-tabs-wrapper {
  border: 1px solid rgba(233, 233, 233, 1) !important;
  background: #fff !important;
  border-radius: 20px !important;
  margin-bottom: 55px !important;
}

div#tab-description {
  padding: 0px 25px !important;
}
.woocommerce-Tabs-panel h2 {
  color: #000;
  font-size: 20px;
}
.woocommerce-Tabs-panel p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 34px;
  letter-spacing: 0%;
  color: rgba(69, 69, 69, 1);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background: none !important;
  color: #fff !important;
  display: inline-block;
  position: initial;
  z-index: 0;
  margin: 0 -5px;
  padding: 0 1em;
}
.product-review-count a {
  color: rgba(78, 78, 78, 1) !important;
}

.product-stock-status {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-stock-status.in-stock {
  color: #2e7d32 !important;
}

.product-stock-status.out-of-stock {
  color: #c62828 !important;
}

.related h2 {
  text-align: center !important;
  padding: 10px 0px 30px 0px;
  font-family: Anton;
  font-weight: 400;
  font-style: Regular;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
}

/* .owl-item .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 100% !important;
    margin: 0 2% 2.992em 0;
} */

/* Owl item full width */
/* .owl-carousel .owl-item {
    width: 100% !important;
}
*/

.owl-carousel li.product.related-product-full {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

.owl-item li {
  width: 100% !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 6px !important;
}

.product_meta {
  display: none !important;
}

.wc-block-cart__submit-container {
  background: red;
  border-radius: 5px;
}
.wc-block-cart__submit-container a {
  color: #fff !important;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: bold !important;
}

a.wc-block-components-product-name {
  font-size: 18px !important;
  color: #000 !important;
  text-decoration: none;
}

.catlist li {
  list-style: none;
  font-size: 17px;
  line-height: 31px;
  color: rgba(0, 0, 0, 1);
}

/*****************************Responsive****************************************/

@media (max-width: 991px) {
  .nav-icons {
    margin-left: 0;
    margin-top: 15px;
    justify-content: center;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon i {
    font-size: 20px;
  }

  .logo-main {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .top-strip-left,
  .top-strip-right {
    justify-content: center;
    font-size: 0.75rem;
  }

  .top-strip-right {
    margin-top: 10px;
  }

  .top-strip-social {
    border-left: none;
    padding-left: 0;
    margin-left: 10px;
  }
  .top-strip {
    position: relative !important;
  }
  .logo-icon {
   width: 159px;
  height: 200px;

  }
  .logo-icon img{
      width:100px;
  }
  
}

@media (max-width: 768px) {
  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }

  .hero-subtitle-cursive {
    font-size: 2.5rem;
  }

  .hero-title-new {
    font-size: 3rem;
  }

  .btn-shop-now {
    padding: 12px 35px;
    font-size: 14px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

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

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

  .carousel-control-prev-icon-custom i,
  .carousel-control-next-icon-custom i {
    font-size: 20px;
  }

  .wave-bottom {
    height: 80px;
  }
  .top-strip {
    position: relative !important;
  }
  
  .logo-icon {
   width: 159px;
  height: 200px;
  display: none;

  }
  .logo-icon img{
      width:100px;
  }
}

@media (max-width: 991px) {
  .about-red-img {
    max-width: 100%;
  }

  .about-red-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
    
    nav.navbar.navbar-expand-lg.sticky-top.navbar-dark.scrolled {
    display: none;
}

  .hero-title {
    font-size: 3rem;
  }
  .carousel-item {
    height: 60vh;
  }
  .carousel-caption {
    bottom: 15%;
    text-align: center;
  }

  .equipment-card {
    height: 350px;
  }

  .equipment-title {
    font-size: 1.8rem;
  }

  .equipment-overlay {
    padding: 25px;
  }

  .shop-banner {
    height: 280px;
  }

  .shop-banner .shop-title {
    font-size: 32px;
  }
  .top-strip {
    position: relative !important;
  }

  .newsletter-form-new {
    flex-direction: column;
    max-width: 100%;
    border-radius: 20px;
  }
  .newsletter-input-new {
        border-radius: 20px 20px 0 0 !important;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

  .newsletter-btn-new {
    width: 100%;
    border-radius: 0 0 20px 20px !important;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

      .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100%;
        float: left;
        clear: both;
        margin: 0 0 2.992em !important;
    }

.woocommerce ul.products li.product .button {
    display: block;   
    margin: 0px 10px 10px 30px !important;
    text-align: center;
    background: rgba(237, 28, 36, 1);
    color: #FFF;
    font-size: 15px;
    font-weight: 500;   
    max-width: 300px;   
     }

     .cat-content {
		display: none;
		margin-top: 10px;
	}

	.cat-toggle {
		background: none;
		border: none;
		font-size: 18px;
	}

  .toggle-icon {
		transition: transform 0.3s ease;
	}

	.toggle-icon.rotate {
		transform: rotate(180deg);
	}

}


button.navbar-toggler {
    display: none;
}

