  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 
body{
    overflow-X: hidden;
} */

/* Reset and Base Styles */

@font-face {
    font-family: 'Inter 24pt';
    src: url('../fonts/Inter24pt-Regular.woff2') format('woff2'),
        url('../fonts//Inter24pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 24pt';
    src: url('../fonts//Inter24pt-Medium.woff2') format('woff2'),
        url('../fonts//Inter24pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Serif ExtraCondensed';
    src: url('../fonts//NotoSerifExtraCondensed-SemiBold.woff2') format('woff2'),
        url('../fonts//NotoSerifExtraCondensed-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Serif ExtraCondensed';
    src: url('../fonts//NotoSerifExtraCondensed-Medium.woff2') format('woff2'),
        url('../fonts//NotoSerifExtraCondensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Serif ExtraCondensed';
    src: url('../fonts//NotoSerifExtraCondensed-Bold.woff2') format('woff2'),
        url('../fonts//NotoSerifExtraCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Serif ExtraCondensed';
    src: url('../fonts//NotoSerifExtraCondensed-ExtraBold.woff2') format('woff2'),
        url('../fonts//NotoSerifExtraCondensed-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body{
    background-color: #000000 !important;
}


li {
    list-style: none
    
}

li,
p {
    font-family: 'Inter 24pt';
    font-size: 16px;
    color: #a1a1a1;
    line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif ExtraCondensed';
    color: var(--first-clr);
    line-height: 1.3;
    font-weight: bold;
}

a {
    font-family: 'Inter 24pt';
    font-weight: normal;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .1px;
    color: #000;
}


.bg-color {
    background-color: #f3f7fa
}

img {
    max-width: 100%
}

.padd {
    padding: 60px 0
}

.dropdown-toggle::after{
    display: none !important;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;   
    position: relative;
}

/* Top Warning Bar */
.top-warning-bar {
    background-color: #000;
    color: white;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
}

.warning-text {
    color: white;
    font-size: 15px;
}

.shipping-text {
    color: white;
    font-size: 15px;
}

/* Main Navigation */
.navbar {
    padding: 0px 0;
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    text-decoration: none;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.logo-number {
    color: #a41e23;
    font-size: 36px;
    font-weight: 900;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 800px;
    margin: 0 20px;
}

.search-container .input-group-text {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin: 0px;
    border: 0px !important;
}

.search-container .form-control {
    border-color: #dee2e6;
    border-left: none;
    border-right: none;
}

.search-container .form-control:focus {
    border-color: #a41e23;
    box-shadow: none;
}

/* Navbar Icons */
.navbar-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    position: relative;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #a41e23;
}

.icon-link .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #a41e23;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}

/* Category Navigation */
.category-nav {
    background-color: white;
    padding: 0px 0;
    border-top: 8px solid #000000;
    border-radius: 6px !important;
}

.category-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.dropdown-toggle:hover {
    color: #a41e23;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 1px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
    font-size: 14px;
    position: relative;
}

.dropdown-item:hover {
    background-color: #a41e23;
    color: white;
    padding-left: 30px;
    /* transform: translateX(5px); */
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #a41e23;
    opacity: 0;
    transition: all 0.3s ease;
}

/* 

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    padding: 60px 0;
    max-width: 600px;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffd700;
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-explore {
    background-color: #a41e23;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-explore:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-color: rgba(220, 53, 69, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #a41e23;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination {
    bottom: 30px;
    z-index: 10;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background-color: #a41e23;
}


/* Categories Section */
.categories-section {
    background-color: #212121;
    padding: 80px 0;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bullet {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
}

.categories-slider {
    position: relative;
    padding: 0 60px;
}

.categories-swiper {
    overflow: visible;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    width: 200px;
    height: 226px;
    border-radius: 108px;
    background-color: #1a1a1a;
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    object-fit: cover;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    /* padding: 10px; */
}

.category-card:hover .card-image {
    border-color: #a41e23;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.card-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories Slider Navigation */
.categories-next,
.categories-prev {
    color: #a41e23;
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.categories-next:hover,
.categories-prev:hover {
    background-color: #a41e23;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.categories-next:after,
.categories-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.categories-next {
    right: 0;
}

.categories-prev {
    left: 0;
}

/* View All Categories Button */
.btn-view-all {
    background-color: #a41e23;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-view-all:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}


/* Best Seller Section */
.best-seller-section {
    background-color: #000000;
    padding: 80px 0;
    color: white;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-view-more {
    background-color: #a41e23;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    color: white;
}

/* Product Cards */
.product-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: -5px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

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

.product-badge {
    position: absolute;
    top: 4px;
    left: 5px;
    background-color: #a41e23;
    color: white;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

.wishlist-icon:hover {
    color: #a41e23;
}

.product-image {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 8px;
    height: 159px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3px;
    /* line-height: 1.3; */
}

.product-price {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.product-rating {
    margin-bottom: 0px;
}

.product-rating i {
    color: #ffd700;
    font-size: 14px;
    margin-right: 2px;
}

.btn-add-cart {
    background-color: #a41e23;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 8px; */
    margin: auto;
}

.btn-add-cart:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    color: white;
}

.btn-add-cart i {
    font-size: 12px;
}

/* Promotional Banner */
.promotional-banner {
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.banner-content {
    position: absolute !important;
    z-index: 2;
    bottom: 0px !important;
}

.banner-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-shop-now {
    background-color: #a41e23;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-shop-now:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.banner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* opacity: 0.3; */
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    object-fit: cover;
}


/* Deals & Promotions Section */
.deals-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.deals-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Promotional Boxes */

.deals-section {
  background: #111;
  padding: 80px 0;
  color: #fff;
}

.section-title {
  font-weight: 700;
  color: #fff;
}

.promo-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.promo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.promo-box:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.35);
}

.promo-badge {
  background: #ffcc00;
  color: #111;
  display: math;
  padding: 1px 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 100;
  margin-bottom: 12px;
  width: max-content;
}

.promo-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-text {
  font-size: 15px;
  margin-bottom: 15px;
  color: #e5e5e4;
}

.promo-text .highlight {
  color: #ffcc00;
  font-weight: 600;
}

.btn-promo {
  background: #a41e23;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 6px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background 0.3s ease;
  width: fit-content;
  font-size: 14px;
}

.btn-promo:hover {
  background: #a41e23;
}


/* Flash Sale Banner Section */
.flash-sale-banner {
    position: relative;
    height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,20,20,0.6) 50%, rgba(220,53,69,0.3) 100%); */
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    padding: 32px 0;
}

.limited-badge {
    background-color: #ffd700;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.banner-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner-subtitle {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-box {
    background-color: white;
    color: #a41e23;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.timer-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.btn-flash-sale {
    background-color: #a41e23;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-flash-sale:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

/* Free Shipping Banner Section */
.free-shipping-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.free-shipping-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.free-shipping-banner .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.free-shipping-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(139,69,19,0.8) 0%, rgba(160,82,45,0.6) 50%, rgba(0,0,0,0.4) 100%); */
    z-index: 2;
}

.free-shipping-banner .banner-content {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.shipping-badge {
    background-color: #ffd700;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.free-shipping-banner .banner-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-highlight {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-description {
    color: white;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-start-shopping {
    background-color: #8b4513;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-start-shopping:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: white;
}


/* Testimonials Section */
.testimonials-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonials-swiper-container {
    position: relative;
    padding: 0 50px;
}

.testimonial-card {
    /* background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.5);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 25px;
    max-width: 400px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Navigation */
.testimonials-next,
.testimonials-prev {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonials-next:hover,
.testimonials-prev:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.testimonials-next::after,
.testimonials-prev::after {
    font-size: 18px;
    font-weight: 900;
}

/* Swiper Pagination */
.testimonials-pagination {
    position: relative;
    margin-top: 40px;
}

.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #ffd700;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Subscription Section */
.subscription-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    color: white;
}

.subscription-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pricing-card {
    background-color: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2); */
}

.premium-card {
    background-color: #a41e23;
    border-color: #ffd700;
    transform: scale(1.05);
    z-index: 2;
}

.premium-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    font-family: serif;
}

.plan-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 500;
}

.plan-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 30px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.btn-join-now {
    background-color: #a41e23;
    color: white;
    border: none;
    padding: 9px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    width: fit-content;
    margin: auto;
}

.btn-join-now:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.premium-btn {
    background-color: #ffd700;
    color: #a41e23;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.premium-btn:hover {
    background-color: #ffed4e;
    color: #a41e23;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Related Products Section */
.related-products-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.related-products-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-view-all-products {
    background-color: #a41e23;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-view-all-products:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    color: white;
}

/* About Section */
.about-section {
    background-color: #111;
    padding: 60px 0;
    color: #fff;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.about-eyebrow {
    color: #ffd700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.about-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-text {
    color: #dcdcdc;
    margin-bottom: 16px;
}

.about-btn {
    background: #a41e23;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Stats Counter */
.stats-section {
    background: #404040;
    padding: 40px 0;
    color: #fff;
}

.stat-icon {font-size: 34px;color: #ffd700;margin-bottom: 8px;background: #a41e23;width: 80px;height: 80px;margin: auto;border-radius: 50%;padding: 13px;}
.stat-value {font-size: 44px;font-weight: 800;color: #ffd700;}
.stat-label { margin-top: 6px; font-weight: 600; }

/* Blog Details */
.blog-details-page {
    background: #0e0e0e;
    color: #ffffff;
}

.blog-details-section {
    background: #0e0e0e;
    padding: 50px 0;
}

.article-card {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.article-hero {
    position: relative;
}

.article-hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.date-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: #a41e23;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.article-content {
    padding: 24px 24px 8px;
    background: none;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.muted-text {
    color: #cfcfcf;
}

.muted-text.subtle {
    color: #bdbdbd;
}

.article-quote {
    background: #222;
    border-radius: 12px;
    padding: 18px 18px;
    color: #eaeaea;
    margin: 18px 0;
    position: relative;
}

.text-accent {
    color: #ffd700;
}

.article-subheading {
    color: #ffd700;
    font-size: 1.1rem;
    margin: 18px 0 8px;
}

.article-subheading.neutral {
    color: #ffffff;
    font-size: 1.05rem;
    margin: 22px 0 10px;
}

.article-inline-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.article-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 18px;
    color: #cfcfcf;
}

.article-list li { margin-bottom: 8px; }
.list-check { color: #22c55e; margin-right: 8px; }

/* Sidebar */
.sidebar-card {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
}

.sidebar-title {
    margin: 0 0 10px;
    color: #ffffff;
}

.category-list { list-style: none; padding: 0; margin: 0; color: #cfcfcf; }
.category-list li {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.category-list li.no-border { border-bottom: none; }
.category-list .dot { font-size: 6px; margin-right: 8px; }

.recent-post {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.recent-post.no-border { border-bottom: none; }
.recent-thumb { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }
.recent-date { color: #9aa0a6; }
.recent-link { color: #ffffff; }

/* Breadcrumb / Details Hero */
.details-hero {
    background-color: #000000;
    padding: 70px 0 30px;
    color: white;
    /* border-top: 1px solid #ffd700; */
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.details-hero .breadcrumb {
    margin-bottom: 8px !important;
}

.breadcrumb {
    /* Chevron arrow divider */
    --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12'%3E%3Cpath fill='%23ffd700' d='M0 1.41 1.41 0 8 6 1.41 12 0 10.59 4.59 6z'/%3E%3C/svg%3E");
}

.breadcrumb-item + .breadcrumb-item::before {
    padding-right: .5rem;
    padding-left: .5rem;
    opacity: .9;
}

.breadcrumb .breadcrumb-item a {
    color: #cccccc;
}

.breadcrumb .breadcrumb-item a:hover {
    color: #ffd700;
}

.breadcrumb .breadcrumb-item.active {
    color: #ffd700;
    font-weight: 600;
}

.page-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.page-subtitle {
    color: #cccccc;
    margin-top: 6px;
}

/* Related Products Slider */
.related-products-slider {
    position: relative;
    padding: 0 0px !important;
}

.related-products-swiper {
    overflow: visible;
}

.related-products-swiper .swiper-slide {
    height: auto;
}

/* Related Products Navigation */
.related-next,
.related-prev {
    color: #a41e23;
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.related-next:hover,
.related-prev:hover {
    background-color: #a41e23;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.related-next:after,
.related-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.related-next {
    right: 0;
}

.related-prev {
    left: 0;
}

/* Responsive Related Products */
@media (max-width: 991.98px) {
    .related-products-slider {
        padding: 0 40px;
    }
}

@media (max-width: 767.98px) {
    .related-products-slider {
        padding: 0 20px;
    }
    
    .related-products-section .section-title {
        font-size: 2rem;
    }
}

/* Videos Section */
.videos-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    z-index: 1;
}

.videos-section .container {
    position: relative;
    z-index: 2;
}

.videos-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Videos Slider */
.videos-slider {
    position: relative;
    padding: 0 60px;
}

.videos-swiper {
    overflow: visible;
}

.videos-swiper .swiper-slide {
    height: auto;
}

/* Video Items */
.video-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 12px;
}

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

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgb(100 94 94 / 0%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    border: 2px solid #ffffff;
}

.play-button i {
    color: #ffd700;
    font-size: 1.4rem;
    margin-left: 4px;
}

.video-item:hover .play-button {
    background: #a41e23;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item:hover .play-button i {
    color: white;
}

.video-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    padding: 0 10px;
}

/* Videos Navigation */
.videos-next,
.videos-prev {
    color: #a41e23;
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.videos-next:hover,
.videos-prev:hover {
    background-color: #a41e23;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.videos-next:after,
.videos-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.videos-next {
    right: 0;
}

.videos-prev {
    left: 0;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #a41e23;
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Videos */
@media (max-width: 991.98px) {
    .videos-slider {
        padding: 0 40px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .videos-slider {
        padding: 0 20px;
    }
    
    .videos-section .section-title {
        font-size: 2rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
}

/* Photo Gallery Section */
.photo-gallery-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.photo-gallery-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-view-gallery {
    background-color: #a41e23;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-view-gallery:hover {
    background-color: #a41e23;
    transform: translateY(-2px);
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 1 !important;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

/* Responsive Gallery */
@media (max-width: 991.98px) {
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .gallery-item {
        height: 180px;
    }
    
    .photo-gallery-section .section-title {
        font-size: 2rem;
    }
}

/* Footer Section */
.footer-section {
    background-color: #1a1a1a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    padding: 60px 0 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-content {
    margin-bottom: 40px;
}

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

.footer-title {
    color: #a41e23;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-links a i {
    color: #a41e23;
    font-size: 0.5rem;
}

/* Contact Info */
.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: white;
    font-size: 0.95rem;
}

.contact-item i {
    color: #a41e23;
    width: 16px;
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.form-control {
    background-color: #333;
    border: 1px solid #555;
    color: white;
    padding: 8px 15px;
    border-radius: 0;
    flex: 1;
}

.form-control:focus {
    background-color: #444;
    border-color: #ffd700;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.btn-subscribe {
    background-color: #a41e23;
    border: none;
    color: white;
    padding: 12px 15px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #a41e23;
    color: white;
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon.facebook {
    background-color: #a41e23;
    color: white;
}

.social-icon.instagram {
    background-color: white;
    color: black;
}

.social-icon.twitter {
    background-color: #a41e23;
    color: white;
}

.social-icon.linkedin {
    background-color: #a41e23;
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-logo {
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    min-width: 60px;
}

.payment-logo.visa {
    /* background: linear-gradient(45deg, #1a1f71, #ffffff, #ff6600); */
    color: white;
    width: 159px;
}

.payment-logo.mastercard {
    background: linear-gradient(45deg, #eb001b, #f79e1b);
    color: white;
}

.payment-logo.paypal {
    background: linear-gradient(45deg, #0070ba, #ffffff);
    color: #0070ba;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #ffd700;
    padding-top: 13px;
    margin-top: 2px;
}

/* SSL Badge */
.ssl-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 15px 20px;
    border-radius: 50px;
    color: #1a1a1a;
    font-weight: 600;
    max-width: 200px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.ssl-icon {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.ssl-text {
    text-align: center;
}

.ssl-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.ssl-ssl {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

/* Copyright */
.copyright {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animation for smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #a41e23;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a41e23;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.search-container .form-control {
    background: #ffffff;
}
.my-nav-bar {
    background: black;
}
section.featured-brands.py-5 {
    background: #212121;
}
.brand-card {
    background: #ffffff;
    padding: 20px;
    height: 142px;
    border-radius: 10px;
}

    .learning-center {
      padding: 50px 20px;
    }
 
    .tabs .nav-link {
      background-color: #333;
      color: #f5f5f5;
      margin-bottom: 10px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.2s;
    }
 
    .tabs .nav-link.active {
      background-color: #7f1d29;
      color: #fff;
    }
 
    .tab-content .tab-pane {
      background-color: #1a1a1a;
      padding: 20px;
      border-radius: 8px;
      min-height: 300px;
      border: 1px solid #000000;
    }
 
    .tab-content img {
      max-width: 100%;
      border-radius: 8px;
      margin-bottom: 20px;
    }
 
    .read-more-btn {
      background-color: #7f1d29;
      color: #fff;
      border: none;
      padding: 8px 15px;
      border-radius: 5px;
      margin-top: 15px;
      text-decoration: none;
    }
 
    .read-more-btn:hover {
      background-color: #a32a3d;
    }
    section.learning-section {
    background: #212121;
    padding: 60px 0px;
}
.tab-content .tab-pane img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.tab-content .tab-pane p{
    color: white;
}

 
    .overlay-section {
      position: relative;
      background-image: url('Img/insta-bg.png'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      height: 400px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
 
    .overlay-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(0 0 0 / 68%); /* dark overlay */
      z-index: 1;
    }
 
    .overlay-content {
      position: relative;
      z-index: 2;
    }
 
    .overlay-content img {
      max-width: 150px;
      margin-bottom: 20px;
    }
.input-group input.form-control {
    background: white;
    padding: 11px 10px !important;
}
div#learningTab {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row !important;
    gap: 20px 10px;
}

.tabs .nav-link {
    width: 48%;
}
.tab-content .tab-pane h3{
    color: white;
}
.hero-content-text {
    width: 50%;
}
.search-container input.form-control {
    padding: 7px !important;
}
.blog-list-section .product-info{
    padding: 16px 10px ;
}
section.blog-list-section .product-image {
    margin: 0px;
}
.blog-list-section .product-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    height: 200px;
    width: 100%;
}
/* .blog-list-section .product-image img {
    max-width: 100%;
    max-height: 186px;
    object-fit: cover;
    border-radius: 8px;
    height: 186px;
    width: 100%;
} */
.blog-list-section .product-name{
    font-size: 24px ;
    color: #ffd700;
}
.about-image-box img {
    height: 432px;
}
ul.why-choose-list li i {
    color: #a41e23;
    padding: 8px;
    background: #3e3e3e00;
    border: 2px solid #a41e23;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 12px;
}
ul.why-choose-list p {
    color: aliceblue;
    margin-left: 20px;
}
ul.why-choose-list li {
    display: flex;
    align-content: center;
    align-items: center;
    margin-bottom: 7px;
}
.product-slider-details img {
    width: 100%;
    height: 500px !important;
    object-fit: contain;
}

.product-thumbs-details img {
    width: 100px !important;
    height: 100px !important;
    background: #00000000;
    border: 1px solid #505050;
    border-radius: 10px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
    
}
.py-5 {
    padding : 60px 0px !important ;
}

/* Product Details Page */
/* Product List Page */
.product-list-page .details-hero { background:#111; border-bottom:1px solid rgba(255,255,255,0.15); }
.product-list-page .page-title { color:#fff; }

.product-list-page .form-select,
.product-list-page .form-control {
background:#0f0f0f;
color:#fff;
border:1px solid #2a2a2a;
}
.product-list-page .form-select:focus,
.product-list-page .form-control:focus { box-shadow:0 0 0 0.2rem rgba(255,255,255,0.15); border-color:#fff; }

.product-list-page .form-range::-webkit-slider-thumb { background:#a41e23; }
.product-list-page .form-range::-moz-range-thumb { background:#a41e23; }

.product-list-page aside .form-label { font-weight:600; }
.product-list-page #applyFilters { background:#a41e23; border-color:#a41e23; }
.product-list-page #applyFilters:hover { filter:brightness(1.1); }

.product-list-page #productGrid .product-card { background:#2a2a2a; border-radius:12px; }
.product-list-page #productGrid .product-name { color:#fff; font-size:1rem; }
.product-list-page #productGrid .product-price { color:#fff; }
.product-list-page #productGrid .product-image { height:200px; }
.product-list-page #productGrid .product-image img { max-height:160px; }

.product-list-page .text-white-50 { color:#cfcfcf !important; }
/* Product List Page Enhancements */
.plp-sidebar { background:#1c1c1c; border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:16px; }
.plp-sort { min-width:170px; }
.plp-results { color:#cfcfcf; }
.plp-card .product-image { height:220px; }
.plp-card .product-image img { max-height:180px; }
.plp-apply { background:#a41e23; border-color:#a41e23; }
.plp-apply:hover { filter:brightness(1.1); }
/* Contact Page */
.contact-section { background-color: #1a1a1a; padding: 80px 0; color: #ffffff; min-height: 100vh; }
.contact-header { text-align: center; margin-bottom: 60px; }
.contact-header .contact-title { font-size: 3rem; font-weight: 700; color: #ffd700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.contact-header .contact-subtitle { font-size: 1.2rem; color: #cccccc; max-width: 600px; margin: 0 auto; }
.contact-card { background-color: #2a2a2a; border-radius: 15px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.contact-card h3 { color: #ffd700; font-size: 1.8rem; font-weight: 600; margin-bottom: 30px; text-align: center; }
.contact-label { color: #ffffff; font-weight: 500; margin-bottom: 8px; display: block; }
.contact-input,
.contact-select,
.contact-textarea { background-color: #333; border: 1px solid #555; color: #ffffff; padding: 12px 15px; border-radius: 8px; }
.contact-textarea { resize: vertical; }
.btn-contact-submit { background-color: #dc3545; color: #ffffff; border: none; padding: 15px 40px; border-radius: 8px; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3); }
.btn-contact-submit i { margin-right: 8px; }
.contact-info-card {background-color: #2a2a2a;border-radius: 15px;padding: 18px;box-shadow: 0 10px 30px rgba(0,0,0,0.3);height: 100%;}
.contact-info-title { color: #ffd700; font-size: 1.8rem; font-weight: 600; margin-bottom: 30px; text-align: center; }
.contact-detail { display: flex; align-items: center; margin-bottom: 20px; }
.contact-detail .icon-circle { background-color: #dc3545; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; }
.contact-detail h5 { color: #ffffff; font-weight: 600; margin-bottom: 5px; }
.contact-detail p { color: #cccccc; margin: 0; }
.contact-hours { display: flex; align-items: center; }
.social-follow { text-align: center; margin-top: 30px; }
.social-follow h5 { color: #ffd700; font-weight: 600; margin-bottom: 15px; }
.social-follow .social-links { display: flex; justify-content: center; gap: 15px; }
.social-follow .social-link { width: 40px; height: 40px; background-color: #dc3545; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; text-decoration: none; transition: all 0.3s ease; }
.product-details-section {
  background: #000;
  color: #fff;
}

.product-details-section a { color: #fff; }

.product-details-section .product-slider,
.product-details-section .product-right .product-details {
  background: #0f0f0f;
  border-color: #1e1e1e;
}

/* .product-details-section .product-thumbs .swiper-slide {
  background: #0f0f0f;
}
 */
/* .product-details-section .product-thumbs .swiper-slide-thumb-active,
.product-details-section .product-thumbs .swiper-slide:hover {
  border-color: #fff;
} */

.product-details-section .product-slider .swiper-button-next,
.product-details-section .product-slider .swiper-button-prev {
  background: rgb(255 255 255 / 70%);
  color: #fff;
  font-size: 10px;
}

.product-details-section .btn.btn-primary {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.product-details-section .btn.btn-primary:hover {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}

.product-details-section .btn-outline-secondary {
  color: #ffffff;
  border-color: #ffffff;
  background: none;
}

.product-details-section .btn-outline-secondary:hover,
.product-details-section .btn-outline-secondary.active,
.product-details-section .btn-outline-secondary:focus {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.product-details-section .form-select,
.product-details-section .form-control {
  background: #0f0f0f !important;
  color: #fff;
  border-color: #2a2a2a;
}

.product-details-section .form-select:focus,
.product-details-section .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.15);
  border-color: #fff;
}

.product-details-section .text-muted { color: #bbb !important; }
.product-details-section .badge.bg-success { background-color: #22c55e !important; }
.product-slider-details {
  position: relative;
}

.product-slider {
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.product-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  background: black;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
  color: #111;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-size: 12px !important;
}

.product-thumbs-details {
  margin-top: 10px;
}

.product-thumbs {
  padding: 6px 0;
}

.product-thumbs .swiper-slide {
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.product-thumbs .swiper-slide img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  display: block;
}

.product-thumbs .swiper-slide-thumb-active,
.product-thumbs .swiper-slide:hover {
  border-color: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-right .product-details {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.product-right .badge.bg-success {
  background-color: #28a745 !important;
}

.product-right .btn.btn-primary {
  background-color: white;
  border-color: #111;
}
.product-right .btn.btn-primary:hover {
  background: #a41e23;
  color: white;
}
.product-right .btn.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

.product-right .btn-outline-secondary.active,
.product-right .btn-outline-secondary:focus {
  color: #fff;
  background-color: #111;
  border-color: #111;
  box-shadow: none;
}

/* Quantity input tweaks */
#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.about-image-box:hover img {
  width: 100%;
  transform: scale(1.5);
}
button#qtyMinus {
  background: #a41e23;
}
.about-image-box {
  overflow: hidden;
}
button#qtyPlus {
  background: #a41e23;
}
.about-btn:hover {
  background: #000000;
  border: 1px solid #a41e23;
}
/* Standardized Button System */
.btn-standard {
  background-color: #a41e23;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(164, 30, 35, 0.3);
}

.btn-standard:hover {
  background-color: #8b1a1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164, 30, 35, 0.4);
  color: white;
  text-decoration: none;
}

.btn-standard:focus {
  box-shadow: 0 0 0 0.2rem rgba(164, 30, 35, 0.25);
  color: white;
}

.btn-standard i {
  font-size: 12px;
}

/* Button Variants */
.btn-standard.btn-outline {
  background-color: transparent;
  color: #a41e23;
  border: 2px solid #a41e23;
  box-shadow: none;
}

.btn-standard.btn-outline:hover {
  background-color: #a41e23;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164, 30, 35, 0.4);
}

.btn-standard.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-standard.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-standard.btn-gold {
  background-color: #ffd700;
  color: #a41e23;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-standard.btn-gold:hover {
  background-color: #ffed4e;
  color: #a41e23;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Product Card Buttons */
.btn-product {
  background-color: #a41e23;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
}

.btn-product:hover {
  background-color: #8b1a1f;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

/* Navigation Buttons */
.btn-nav {
  background-color: #a41e23;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-nav:hover {
  background-color: #8b1a1f;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

/* Override existing button styles to use standardized classes */
.btn-explore,
.btn-view-all,
.btn-view-more,
.btn-view-all-products,
.btn-view-gallery,
.btn-shop-now,
.btn-start-shopping,
.btn-flash-sale,
.btn-join-now,
.btn-add-cart,
.btn-promo,
.about-btn,
.read-more-btn,
.btn-contact-submit {
  background-color: #a41e23 !important;
  color: white !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(164, 30, 35, 0.3) !important;
}
h3.product-name a {
    color: #ffffff;
    font-size: 20px !important;
    font-weight: 500;
}
.btn-explore:hover,
.btn-view-all:hover,
.btn-view-more:hover,
.btn-view-all-products:hover,
.btn-view-gallery:hover,
.btn-shop-now:hover,
.btn-start-shopping:hover,
.btn-flash-sale:hover,
.btn-join-now:hover,
.btn-add-cart:hover,
.btn-promo:hover,
.about-btn:hover,
.read-more-btn:hover,
.btn-contact-submit:hover {
  background-color: #8b1a1f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(164, 30, 35, 0.4) !important;
  color: white !important;
  text-decoration: none !important;
}

/* Special styling for premium buttons */
.premium-btn {
  background-color: #ffd700 !important;
  color: #a41e23 !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

.premium-btn:hover {
  background-color: #ffed4e !important;
  color: #a41e23 !important;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
}

.plp-sidebar {   
  position: sticky;
  top: 60px;
}

/* Product List Page Enhancements */
.plp-card {
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 !important;
}

/* Grid/List View Toggle Styles */
.view-toggle .btn {
  border-radius: 0;
  border-right: none;
}

.view-toggle .btn:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.view-toggle .btn:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  border-right: 1px solid #6c757d;
}

.view-toggle .btn.active {
  background-color: #a41e23;
  border-color: #a41e23;
  color: white;
}

.view-toggle .btn:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #6c757d;
}

/* List View Styles */
.list-view .product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 15px;
  margin-bottom: 15px;
}

.list-view .product-image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.list-view .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-view .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-view .product-name {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.list-view .product-price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.list-view .product-rating {
  margin-bottom: 10px;
}

.list-view .btn-add-cart {
  align-self: flex-start;
  margin-top: auto;
}

/* Grid View Styles (default) */
.grid-view .product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.grid-view .product-image {
  height: 200px;
  margin-bottom: 15px;
}

.grid-view .product-image img {
  max-height: 160px;
}

.grid-view .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.plp-card .product-image {
  overflow: hidden;
  border-radius: 8px;
}

.plp-card .product-image img {
  transition: transform 0.3s ease;
}

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

/* Enhanced button hover effects for project-list */
.plp-card .btn-add-cart {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plp-card .btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164, 30, 35, 0.4);
}

.plp-card .btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.plp-card .btn-add-cart:hover::before {
  left: 100%;
}

/* Product Card Link Styling */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.product-card-link:hover {
  text-decoration: none;
  color: inherit;
}

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

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

.product-card-link:hover .btn-add-cart {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164, 30, 35, 0.4);
}

/* Blog Card Link Styling */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  text-decoration: none;
  color: inherit;
}

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

.blog-card-link:hover .product-image img {
  transform: scale(1.05);
}

.blog-card-link:hover .btn-view-all-products {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(164, 30, 35, 0.4);
}

/* Blog sidebar link styling */
.recent-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-link:hover {
  color: #ffd700;
  text-decoration: none;
  transform: translateX(5px);
}

/* Product Tabs Section */
.product-tabs-section {
  background-color: #000000;
}

.product-tabs .nav-link {
  color: #000000;
  border: 1px solid #333;
  border-radius: 0;
  padding: 12px 20px;
  transition: all 0.3s ease;
  font-weight: 400 !important;
}

.product-tabs .nav-link:hover {
  color: #fff;
  background-color: #333;
  border-color: #555;
}

.product-tabs .nav-link.active {
  color: #fff;
  background-color: #a41e23;
  border-color: #a41e23;
}

.product-tabs .nav-link i {
  font-size: 14px;
}

/* Product Highlights */
.product-highlights {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #333;
}

.highlight-item {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-item i {
  font-size: 20px;
}

/* Review Section */
.review-summary {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #333;
}

.rating-breakdown .progress {
  background-color: #565656;
}

.review-item {
  background: #2a2a2a;
  border: 1px solid #333 !important;
}

.review-item:hover {
  background: #333;
}

/* Rating Input */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
  color: #ffc107;
}

/* FAQ Accordion */
.accordion-item {
  background: #2a2a2a;
  border: 1px solid #333;
  margin-bottom: 10px;
  border-radius: 8px;
}

.accordion-button {
  background: #2a2a2a;
  color: #fff;
  border: none;
  border-radius: 8px;
}

.accordion-button:not(.collapsed) {
  background: #a41e23;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(164, 30, 35, 0.25);
}

.accordion-body {
  background: #333;
  color: #cfcfcf;
}

/* Modal Styling */
.modal-content {
  background: #2a2a2a;
  border: 1px solid #333;
}

.modal-header {
  border-bottom: 1px solid #333;
}

.modal-footer {
  border-top: 1px solid #333;
}

.modal-title {
  color: #fff;
}

/* Comment Form Styling */
.comment-form {
  background: #2a2a2a;
  /* border: 1px solid #333 !important; */
  border-radius: 8px;
}

.comment-form h5 {
  color: #fff;
  margin-bottom: 20px;
}

.comment-form .form-label {
  color: #cfcfcf;
  font-weight: 500;
  margin-bottom: 8px;
}

.comment-form .form-control {
  background: #333;
  border: 1px solid #555;
  color: #fff;
  border-radius: 6px;
}

.comment-form .form-control:focus {
  background: #333;
  border-color: #a41e23;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(164, 30, 35, 0.25);
}

.comment-form .form-control::placeholder {
  color: #888;
}

.comment-form .form-check-label {
  color: #cfcfcf;
}

.comment-form .form-check-input:checked {
  background-color: #a41e23;
  border-color: #a41e23;
}

.comment-form .btn-primary {
  background: #a41e23;
  border-color: #a41e23;
}

.comment-form .btn-primary:hover {
  background: #8a1a1e;
  border-color: #8a1a1e;
}

.comment-form .btn-outline-secondary {
  color: #cfcfcf;
  border-color: #555;
}

.comment-form .btn-outline-secondary:hover {
  background: #555;
  border-color: #555;
  color: #fff;
}

/* Review Form Rating Input */
.comment-form .rating-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  margin-top: 8px;
}

.comment-form .rating-input input[type="radio"] {
  display: none;
}

.comment-form .rating-input label {
  font-size: 28px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comment-form .rating-input input[type="radio"]:checked ~ label,
.comment-form .rating-input label:hover,
.comment-form .rating-input label:hover ~ label {
  color: #ffc107;
  transform: scale(1.1);
}

/* Success Notification */
.alert-success {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-success .btn-close {
  filter: invert(1);
}

/* Mega Menu Styling */
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
  padding: 30px 0;
}

.mega-menu-dropdown.show {
  display: block;
}

.category-nav {
  position: relative;
}

.mega-menu-btn {
  background: #ffc107 !important;
  border: none !important;
  color: #000 !important;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mega-menu-btn:hover {
  background: #e0a800 !important;
  transform: translateY(-1px);
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 30px;
}

.main-nav-links .nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 0;
  transition: color 0.3s ease;
}

.main-nav-links .nav-link:hover {
  color: #a41e23;
}

.main-nav-links .nav-link i {
  font-size: 12px;
  margin-left: 5px;
}

/* Mega Menu Dropdown */
.mega-menu-dropdown {
  position: absolute;
  top: 102%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #000000;
  border-top: none;
  box-shadow: 0 4px 20px rgb(0 0 0 / 10%);
  z-index: 1000;
  display: none;
  padding: 30px 0;
  border-radius: 10px;
}

.mega-menu-dropdown.show {
  display: block;
}

/* Categories Column */
.mega-menu-categories {
  padding-right: 20px;
}

.category-item {
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  color: #333;
  font-weight: 500;
}

.category-item:hover,
.category-item.active {
  background: #f8f9fa;
  color: #a41e23;
}

.category-item i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.category-item:hover i,
.category-item.active i {
  transform: translateX(3px);
}

/* Subcategories Column */
.mega-menu-subcategories {
  padding: 0 20px;
}

.subcategory-content {
  display: none;
}

.subcategory-content.active {
  display: block;
}

.subcategory-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #a41e23;
  padding-bottom: 10px;
}

.subcategory-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.subcategory-link {
  color: #666;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding-left: 10px;
}

.subcategory-link:hover {
  color: #a41e23;
  background: #f8f9fa;
  padding-left: 15px;
}

/* Promotions Column */
.mega-menu-promotions {
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}

.promotion-title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-products {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.featured-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.featured-item:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.featured-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.featured-info h6 {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.featured-info .price {
  color: #a41e23;
  font-weight: 600;
  font-size: 14px;
}

/* Promotion Banner */
.promotion-banner {
  background: linear-gradient(135deg, #a41e23, #8a1a1e);
  border-radius: 8px;
  padding: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 14px;
  color: #ffc107;
  margin-bottom: 5px;
  font-weight: 600;
}

.banner-subtitle {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.banner-product {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.banner-link:hover {
  color: #ffc107;
}

.banner-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.banner-link:hover i {
  transform: translateX(3px);
}

.banner-image {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.banner-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

/* Quick Links */
.quick-links-title {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.quick-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.quick-link:hover {
  color: #a41e23;
  padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .mega-menu-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: white;
    overflow-y: auto;
  }
  
  .main-nav-links {
    display: none;
  }
  
  .mega-menu-categories,
  .mega-menu-subcategories,
  .mega-menu-promotions {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .mega-menu-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .category-item {
    padding: 10px 12px;
    font-size: 14px;
    background: #f8f9fa;
  }
  
  .subcategory-title {
    font-size: 16px;
  }
  
  .featured-item {
    padding: 8px;
  }
  
  .featured-img {
    width: 40px;
    height: 40px;
  }
}

/* Universal Product Card Standardization */
.product-card {
  /* background: #2c2c2c; */
  /* border-radius: 12px; */
  /* padding: 20px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  /* transition: all 0.3s ease; */
  /* position: relative; */
  /* overflow: hidden; */
  /* margin: 0; */
}

.product-card.plp-card {
  background: #2c2c2c;
  border-radius: 12px;
  padding: 12px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 400px !important;
  min-height: 420px !important;
}

/* Ensure all product cards have consistent hover effects */
.product-card:hover,
.product-card.plp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Standardize product image styling */
.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

.product-card:hover .product-image img,
.product-card.plp-card:hover .product-image img {
  transform: scale(1.05);
}

/* Standardize product info styling */
.product-info {
  text-align: center;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #a41e23;
  margin-bottom: 10px;
}

.product-rating {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 15px;
}

.product-rating i {
  color: #ffd700;
  font-size: 14px;
}

/* Standardize button styling across all cards */
.btn-add-cart {
  background-color: #a41e23 !important;
  color: white !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(164, 30, 35, 0.3) !important;
  width: 100%;
}

.btn-add-cart:hover {
  background-color: #8b1a1f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(164, 30, 35, 0.4) !important;
  color: white !important;
  text-decoration: none !important;
}

/* Product badge standardization */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffd700;
  color: #a41e23;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

/* Wishlist icon styling */
.wishlist-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  background: rgb(164 30 35);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

 .wishlist-icon:hover {
   background: #a41e23;
   color: white;
   transform: scale(1.1);
 }
h3.title.rotate-text {
    color: white;
    margin-bottom: 60px;
}

 /* FAQ Page Styling */
 .faq-section {
   background-color: #0a0a0a;
   color: white;
   min-height: 80vh;
 }

 .faq-item {
   background-color: #1a1a1a;
   border: 1px solid #333;
   border-radius: 12px;
   margin-bottom: 15px;
   overflow: hidden;
   transition: all 0.3s ease;
 }

 .faq-item:hover {
   border-color: #a41e23;
   box-shadow: 0 4px 15px rgba(164, 30, 35, 0.2);
 }

 .accordion-button {
   background-color: #1a1a1a;
   color: white;
   border: none;
   padding: 20px 25px;
   font-size: 16px;
   font-weight: 600;
   transition: all 0.3s ease;
 }

 .accordion-button:not(.collapsed) {
   background-color: #a41e23;
   color: white;
   box-shadow: none;
 }

 .accordion-button:focus {
   box-shadow: 0 0 0 0.2rem rgba(164, 30, 35, 0.25);
   border-color: #a41e23;
 }

 .accordion-button::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
   transition: transform 0.3s ease;
 }

 .accordion-button:not(.collapsed)::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
   transform: rotate(180deg);
 }

 .accordion-body {
   background-color: #2a2a2a;
   color: #cccccc;
   padding: 25px;
   font-size: 15px;
   line-height: 1.6;
 }

 .accordion-body ul {
   margin: 15px 0;
   padding-left: 20px;
 }

 .accordion-body li {
   margin-bottom: 8px;
   color: #cccccc;
 }

 .accordion-body strong {
   color: #ffd700;
   font-weight: 600;
 }

 .faq-item .accordion-button i {
   color: #a41e23;
   font-size: 18px;
   margin-right: 12px;
 }

 .faq-item .accordion-button:not(.collapsed) i {
   color: white;
 }

 /* Contact CTA Section */
 .contact-cta-section {
   background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   border-top: 1px solid #333;
 }

 .contact-cta-section h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
 }

 .contact-cta-section p {
   font-size: 1.1rem;
   max-width: 600px;
   margin: 0 auto 30px;
 }
 .tab-content .tab-pane p {
    color: #b1b1b1 !important;
}
section.product-tabs-section.py-5 {
    color: white;
}
.text-Disclaimer {
    border-left: 5px solid #f08b0e;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 1px, rgb(240 139 14) 0px 0px 0px 1px;
}
.search-container .input-group {
  border: 1px solid #c1c1c1 !important;
}
.search-container .form-control{
  border: 1px solid transparent !important;
}
section.about-section p {
    color: white;
}
section.about-section a{
	color: #a41e23;
}
.search-container .form-control {  
  color: #838383 !important;  
}
a.social-icon:hover {
    background: #ffffff;
    color: black;
}
ul#menu-primary-menu >li {
    margin-left: 20px;
}

.swiper {
  overflow: hidden !important;
}

.swiper-wrapper {
  overflow: visible !important; /* arrows wagaira ke liye */
}

.swiper-slide {
  overflow: hidden;
}


.input-group p {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

button.btn-off {
    display: none;
}
.swiper-button-next:after, .swiper-button-prev:after {   
    font-size: 20px !important;
}
select#weight {
    padding: 5px 14px;
    border-radius: 10px;
    margin-left: 20px;
}
select#pa_flavor {
   padding: 5px 14px;
    border-radius: 10px;
    margin-left: 20px;
}
.product-details-section select {
    padding: 5px 14px;
    border-radius: 10px;
    margin-left: 20px;;
}
div#description ul li {
    list-style: disc;
}
.woocommerce-variation-add-to-cart{
    margin-top: 50px !important;
}
.qty-box {
    display: flex;
    width: auto;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.woocommerce-variation-price {
    margin: 20px !important;
    display: none;
}

.qty-btn {
    width: 40px;
    background: #f8f8f8;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: 0.3s;
}

.qty-btn:hover {
    background: #e3e3e3;
}
table.variations tr {
    margin-bottom: 20px !important;
    height: 75px;
}
.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
}
tbody, td, tfoot, th, thead, tr {   
    padding: 10px;
}
button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
    background: #a52025 !important;
    border: 0px;
    margin-top: 0px;
    padding: 16px 24px;
    border-radius: 10px;
    color: white !important;
}

.contact-input::placeholder,
.contact-select::placeholder,
.contact-textarea::placeholder {
    color: #fff !important;
    opacity: 1; /* Safari fix */
}
button.single_add_to_cart_button.button.alt {
    margin-top: 0px;
    background: #a41e23;
}

/* For Firefox */
.contact-input::-moz-placeholder,
.contact-select::-moz-placeholder,
.contact-textarea::-moz-placeholder {
    color: #fff;
}

/* For Edge / IE */
.contact-input:-ms-input-placeholder,
.contact-select:-ms-input-placeholder,
.contact-textarea:-ms-input-placeholder {
    color: #fff;
}
ul#menu-primary-menu li a {   
    color: black;
}

/* MAIN CONTAINER */
.product-related-slider .swiper-slide {
    background: #1f1f1f; 
    border-radius: 18px;
/*     padding: 25px 20px; */
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all .3s ease;
}

.product-related-slider .swiper-slide:hover {
/*     transform: translateY(-5px); */
/*     box-shadow: 0 10px 25px rgba(0,0,0,0.4); */
}

/* SALE BADGE */
.home-product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffd60a;
    color: #000;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
}

/* PRODUCT IMAGE */
.home-product-image {
    width: 100%;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.home-product-image img {
    max-height: 210px;
    width: auto;
    object-fit: contain;
}

/* PRODUCT TITLE */
.home-product-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 15px 0 5px;
}

/* PRICE */
.product-price {
    margin-bottom: 15px;
}


/* ADD TO CART BUTTON */
.theme-btn2.home-product-btn {
    background: #d62828;
    color: #fff !important;
    display: block;
    width: 100%;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.theme-btn2.home-product-btn:hover {
    background: #b81f1f;
}
/* WRAPPER POSITION */
.category-abso.product-abso {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

/* ICON BUTTON */
.category-abso.product-abso ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-abso.product-abso ul li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 10px;
}

.category-abso.product-abso ul li a i {
    font-size: 16px;
}

/* HOVER EFFECT */
.category-abso.product-abso ul li a:hover {
    background: #d62828;
    border-color: #d62828;
    transform: translateY(-2px);
    color: #fff !important;
}

/* FIX FOR SWIPER SLIDE RELATIVE POSITION */
.product-card {
    position: relative;
}

.product-price .sale-price,
.product-price .woocommerce-Price-amount {
    font-size: 18px;
    font-weight: 700;  
	  color: #fff;
}

.product-price .original-price {
    color: #888;
    margin-right: 5px;
    text-decoration: line-through;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .product-related-slider .swiper-slide {
        padding: 20px 15px;
    }
    .home-product-image {
        height: 180px;
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .wc-block-components-sidebar-layout {
        flex-direction: column;
    }
    
    .wc-block-components-sidebar.wc-block-cart__sidebar {
        flex: 1;
        width: 100%;
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .about-section.default-inner {
        padding: 40px 0;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .wp-block-woocommerce-cart {
        padding: 1rem;
    }
    
    .wc-block-components-main.wc-block-cart__main {
        padding: 1rem;
    }
    
    .wc-block-cart-items__header-image,
    .wc-block-cart-item__image {
        display: none;
    }
    
    .wc-block-cart-items__row td {
        padding: 1rem 0.5rem;
    }
    
    .wc-block-components-sidebar.wc-block-cart__sidebar {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wc-block-cart-items {
        font-size: 0.9rem;
    }
    
    .wc-block-components-product-name {
        font-size: 1rem;
    }
    
    .wc-block-cart__totals-title {
        font-size: 1.5rem;
    }
}



/* ------------------------------
   SECTION WRAPPER (BLACK)
--------------------------------*/
.about-section.default-inner {
    padding: 50px 0;
    background: #000; /* Fully Black */
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Heading */
.about-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    display: inline-block;
}





/* ------------------------------
   LEFT MENU
--------------------------------*/
.woocommerce-MyAccount-navigation {
    width: 250px;
    background: #111; /* Dark Box */
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #333;
}

.woocommerce-MyAccount-navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 8px;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    color: #fff; /* White text */
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #333;
    background: #111;
    transition: 0.25s;
}

/* Hover */
.woocommerce-MyAccount-navigation a:hover {
    background: #222;
    border-color: #555;
}

/* Active */
.woocommerce-MyAccount-navigation .is-active a {
    background: #a41c19 !important;
    color: #ffffff !important;
    border-color: #fff;
}

/* Logout button styling */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    background: #fff !important;
    color: #000 !important;
}

/* ------------------------------
   RIGHT CONTENT PANEL
--------------------------------*/
.woocommerce-MyAccount-content {
    flex: 1;
    background: #111;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
    color: #eee;
    font-size: 15px;
    line-height: 1.6;
}

/* Links */
.woocommerce-MyAccount-content a {
    color: #fff;
    font-weight: 600;
}

.woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* ------------------------------
   TABLES
--------------------------------*/
.woocommerce table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.woocommerce table th,
.woocommerce table td {
    padding: 12px;
    border-bottom: 1px solid #333;
    font-size: 14px;
    color: #fff;
}

.woocommerce table th {
    background: #222;
    font-weight: 600;
}

/* ------------------------------
   FORM INPUTS
--------------------------------*/
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #555;
    background: #000;
    color: #fff;
}

.woocommerce input:focus {
    border-color: #fff;
}

/* ------------------------------
   BUTTONS
--------------------------------*/
.woocommerce button,
.woocommerce form button {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s;
}

.woocommerce button:hover {
    background: #ddd;
}

/* ------------------------------
   MOBILE
--------------------------------*/
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        width: 100%;
    }
    
    .woocommerce-MyAccount-content {
        padding: 20px;
    }
}

/* ============================================
   WISHLIST TITLE SECTION (BLACK THEME)
============================================ */

.about-section .wishlist-title-container {
    background: #111;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #222;
    margin-bottom: 25px;
}

/* Top Title Row */
.about-section .wishlist-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Title */
.about-section .wishlist-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    border-bottom: 2px solid #a41e23;
    display: inline-block;
    padding-bottom: 4px;
}

/* Edit Button */
.about-section .wishlist-title .button.show-title-form {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #a41e23;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.25s;
}

.about-section .wishlist-title .button.show-title-form:hover {
    background: #900d1f;
}

/* SVG Icons */
.about-section .wishlist-title .button.show-title-form svg,
.about-section .hidden-title-form svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ============================
   TITLE EDIT FORM (HIDDEN)
============================ */
.about-section .hidden-title-form {
    margin-top: 15px;
    display: none; /* You can toggle with JS */
}

.about-section .hidden-title-form input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #1b1b1b;
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Buttons inline */
.about-section .hidden-title-form .edit-title-buttons {
    display: flex;
    gap: 10px;
}

/* Cancel + Save buttons */
.about-section .hidden-title-form a {
    background: #a41e23;
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 38px;
    transition: 0.25s;
}

.about-section .hidden-title-form a:hover {
    background: #900d1f;
}

/* Responsive Fix */
@media(max-width: 600px) {
    .about-section .wishlist-title {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .about-section .wishlist-title .button.show-title-form {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   Wishlist / Cart Styling
=========================== */
.shop_table.wishlist_table li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.shop_table.wishlist_table .item-wrapper {
    display: flex;
    gap: 20px;
    flex: 1 1 60%;
}

.shop_table.wishlist_table .product-thumbnail img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.shop_table.wishlist_table .product-thumbnail img:hover {
    transform: scale(1.05);
}

.shop_table.wishlist_table .item-details h3 a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.shop_table.wishlist_table .item-details-table {
    margin-top: 10px;
}

.shop_table.wishlist_table .item-details-table td.label {
    font-weight: 600;
    color: #aaa;
}

.shop_table.wishlist_table .item-details-table td.value del {
    color: #777;
}

.shop_table.wishlist_table .item-details-table td.value ins {
    color: #00ff00;
    font-weight: 700;
    margin-left: 5px;
}
.wishlist-icon {
    background: none !important;
}
span.yith-wcwl-add-to-wishlist-button__label {
    display: none !important;
}

/* Add to Cart Button */
.shop_table.wishlist_table .product-add-to-cart a {
    display: inline-block;
    margin-top: 10px;
    background: #ff6600;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.shop_table.wishlist_table .product-add-to-cart a:hover {
    background: #ff4500;
}

/* Remove Icon */
.shop_table.wishlist_table .product-remove a {
    color: #ff4444;
    font-size: 18px;
    margin-left: 15px;
    transition: 0.3s;
}

.shop_table.wishlist_table .product-remove a:hover {
    color: #ff0000;
}

/* Stock Label */
.shop_table.wishlist_table .wishlist-in-stock {
    color: #00ff00;
    font-weight: 600;
}

/* ===========================
   About Section Styling
=========================== */
.about-section.default-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    background: #111;
    border-radius: 0px;
}

.about-section.default-inner img {
    width: 200px;
    border-radius: 12px;
    object-fit: cover;
}

.about-section.default-inner .content {
    flex: 1 1 60%;
    color: #fff;
}

.about-section.default-inner .content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-section.default-inner .content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}
.about-section.default-inner  .additional-info-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.about-section.default-inner  a.remove_from_wishlist {
    color: #ff4444;
    font-size: 18px;
    margin-left: 0px;
    transition: 0.3s;
}
ul.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile {
    margin: 0 !important;
    padding: 0;
}
.about-section.default-inner  .wishlist_table.mobile li {
    margin-bottom: 7px;
    background: #272727;
    padding: 10px 25px;
}
.about-section.default-inner .product-remove {
    background: #797979;
    padding: 20px;
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 0px;
}
section.about-section a {
    color: #ffffff;
    font-size: 16px !important;
}
.about-section.default-inner  .product-add-to-cart {
    width: auto;
}
.woocommerce table.shop_table.wishlist_table tr td {
    background: #313131 !important;  
}

.about-section.default-inner .icon {
    font-size: 22px;
    color: #ff6600;
    margin-right: 10px;
}



/* PAGE WRAPPER */
.about-section .cart-page-wrapper,
.about-section .woocommerce {
/*     max-width: 1200px; */
    margin: auto;
    padding: 20px;
}

/* HEADING */
.about-section .about-heading {
    font-size: 32px;
    font-weight: 700;
    border-bottom: 1px solid #333;
    padding-bottom: 12px;
    margin-bottom: 25px;
    color: #fff !important;
}

/* NAVIGATION (MY ACCOUNT MENU) */
.about-section .woocommerce-MyAccount-navigation {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

.about-section .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-section .woocommerce-MyAccount-navigation li {
    margin-bottom: 12px;
}

.about-section .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 10px 14px;
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 500 !important;
}

.about-section .woocommerce-MyAccount-navigation .is-active a,
.about-section .woocommerce-MyAccount-navigation a:hover {
    background: #fff;
    color: #ffffff !important;
}

/* CONTENT AREA */
.about-section .woocommerce-MyAccount-content {
    background: #101010;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
}

/* CART TABLE (IF USED) */
.about-section table.shop_table,
.about-section .wc-block-cart-items {
    width: 100%;
    border-collapse: collapse;
    background: #101010;
    border-radius: 12px;
    overflow: hidden;
}

.about-section table.shop_table th,
.about-section .wc-block-cart-items__header th {
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #222;
}

.about-section table.shop_table td,
.about-section .wc-block-cart-items__row td {
    padding: 18px 15px;
    border-bottom: 1px solid #222;
    color: #fff;
}

/* PRODUCT IMAGE */
.about-section .wc-block-cart-item__image img,
.about-section .cart_item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

/* QUANTITY */
.about-section input.qty,
.about-section .wc-block-components-quantity-selector__input {
    background: #000;
    border: 1px solid #444;
    color: #fff;
    padding: 7px 10px;
    border-radius: 6px;
}

/* BUTTONS */
.about-section button,
.about-section .checkout-button,
.about-section .wc-block-cart__submit-button {
    background: #a41e23 !important;
    color: #ffffff !important;
    padding: 5px 11px !important;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    text-decoration: none !important;
    border-radius: 3px !important;
}

.about-section button:hover,
.about-section .checkout-button:hover {
    background: #ddd !important;
    color: black !important;
}
section.product-detail-related-box.margin-sec {
    padding: 60px 0px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-section .woocommerce-MyAccount-navigation {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* ===============================
   PRODUCT DETAILS SECTION WRAPPER
================================== */
.product-details-section {
    background: #000; 
    color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
}

/* Headings */
.product-details-section h2,
.product-details-section h3,
.product-details-section h4 {
    color: #fff;
    font-weight: 700;
}

/* Text Muted Fix */
.product-details-section .text-muted {
    color: #b3b3b3 !important;
}

/* ===============================
   STAR RATING COLOR
================================== */
.product-details-section .text-warning svg,
.product-details-section .text-warning {
    color: #f6c546 !important;
}


/* ===============================
   PRICE & STOCK BADGE
================================== */
.product-details-section .badge.bg-success {
    background: #28a745 !important;
}

.product-details-section .badge.bg-danger {
    background: #dc3545 !important;
}


/* ===============================
   DROPDOWN & SELECT STYLING
================================== */
.product-details-section select.form-select {
    background: #111;
    color: #fff;
    border: 1px solid #333;
}

.product-details-section select.form-select:hover {
    border-color: #666;
}

/* ===============================
   NICOTINE BUTTONS
================================== */
.product-details-section .mg-option {
    border: 1px solid #444;
    color: #fff;
    background: #111;
    transition: 0.3s;
}

.product-details-section .mg-option:hover {
    border-color: #fff;
    background: #222;
}

.product-details-section .mg-option.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}


/* ===============================
   QUANTITY BUTTONS
================================== */
.product-details-section .qty-box {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
}

.product-details-section .qty-btn {
    width: 36px;
    height: 36px;
    background: #000;
    border: none;
    color: #fff;
    transition: 0.3s;
}

.product-details-section .qty-btn:hover {
    background: #333;
}

.product-details-section .qty-input {
    width: 55px;
    height: 36px;
    text-align: center;
    background: #111;
    color: #fff;
    border: none;
}


/* ===============================
   ADD TO CART BUTTON
================================== */
.product-details-section button.single_add_to_cart_button,
.product-details-section .button {
    background: #fff !important;
    color: #000 !important;
    border-radius: 6px;
    transition: 0.3s;
}

.product-details-section button.single_add_to_cart_button:hover,
.product-details-section .button:hover {
    background: #ccc !important;
    color: #000 !important;
}


/* ===============================
   TABLE DESIGN (for attributes)
================================== */
.product-details-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.product-details-section table th,
.product-details-section table td {
    padding: 12px 15px;
    border: 1px solid #333;
}

.product-details-section table th {
    background: #222;
    font-weight: 600;
}

.product-details-section table tr:hover {
    background: #1a1a1a;
}
.product-details-section .woocommerce select {
    width: auto !important;
    padding: 10px 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #555;
    background: #000;
    color: #fff;
}
select#pa_flavor {
    padding: 15px 14px !important;
    border-radius: 10px;
    margin-left: 20px;
    width: 300px !important;   
}


/* RESPONSIVE QUERY______ */
@media (min-width: 992px) and (max-width: 1399.98px) {
 
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }
	
}
@media only screen and (max-width: 1280px) {

}



@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {

}
@media (max-width: 992px) {
    .mega-menu-dropdown {
        position: absolute;
        top: 37px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: white;
        overflow-y: auto;
        height: 456px;
    }

}

@media only screen and (max-width: 991px) {
button#allCategoriesBtn {
    background: #a41e23;
    color: white;
}
ul#menu-primary-menu-1 li {
    display: block;
    width: 95%;
    background: #f8f9fa;
    color: white;
    margin: 3px;
font-family: 'Arial', sans-serif;
}
	ul#menu-primary-menu-1 li a{
		 color: black;
font-family: 'Arial', sans-serif;
	}
.mega-menu-categories, .mega-menu-subcategories, .mega-menu-promotions {
        padding: 1px;
    }
button.btn-off {
    display: block;
}
.my-nav-bar {
    background: #00000000;
    /* position: absolute; */
    z-index: 999;
    width: 100%;
}
.top-warning-bar {
    display: none;
}
.navbar {
    padding: 0px 0;
    margin-top: 10px;
    border-radius: 4px !important;
}
.btn-explore, .btn-view-all, .btn-view-more, .btn-view-all-products, .btn-view-gallery, .btn-shop-now, .btn-start-shopping, .btn-flash-sale, .btn-join-now, .btn-add-cart, .btn-promo, .about-btn, .read-more-btn, .btn-contact-submit {
    background-color: #a41e23 !important;
    color: white !important;
    border: none !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 15px rgba(164, 30, 35, 0.3) !important;
}
.btn-buy-now {
    background: #ff4444 !important;
    color: #fff !important;
    padding: 12px 20px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    display: block !important;
    text-align: center !important;
    transition: 0.3s !important;
    text-decoration: none !important;
}
	button.single_add_to_cart_button.button.alt {
  background: #a52025 !important;
    border: 0px;
    margin-top: 20px;
    padding: 16px 24px;
    border-radius: 10px;
    color: white !important;
}
	del {
    color: #ffffff !important;
}

.btn-buy-now:hover {
    background: #cc0000 !important;
    color: #fff !important;
}

.card-label {    
    font-weight: 400;   
}

	button.btn-off {
    background: #a41e23;
    padding: 4px 10px;
    color: white;
    border-radius: 4px;
    border: 0px !important;
}
	.hero-content-text {
    width: 99%;
}
.plp-card .product-image img { 
    object-fit: contain;
}
.col-auto {
    flex: 0 0 auto;
    width: 49.33%;
}
div#learningTab {  
    gap: 3px 20px;
    margin-top: 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px !important;
    display: block !important;
}

h2.section-title {
    margin-bottom: 30px !important;
}
.btn-view-more {
    background-color: #a41e23;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: none; 
}

.promotional-banner {  
    min-height: 500px;
    border-radius: 15px;
    padding: 10px;   
}
.footer-title {    
    margin-bottom: 10px;   
}

.best-seller-section {   
    padding: 60px 0;
   
}
.product-tabs .nav-link.active{    
    width: 100%;
}
	.product-tabs .nav-link {
		 width: 100%;
	}
.text-Disclaimer {   
    width: 96%;
    margin: auto;
}
.contact-card { 
    padding: 12px;   
}
.contact-label {   
    margin-bottom: 0px;   
}
.contact-info-card {  
    margin-top: 28px;
}
.plp-sidebar {    
    display: none;
}
h3.title.rotate-text {
    color: #a01e23;
    margin-bottom: 50px;
}
}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {
.search-container {   
    display: none;
}
.gallery-item {
        height: 280px;
    }
.banner-image {  
    right: 0px;  
}
.plp-card .product-image img {
    transition: transform 0.3s ease;
    width: 100% !important;
    height: 200px !important;
}
	.plp-sidebar.p-3 {
    display: none;
}
.search-container.meanu-off {
    display: block;
}
.col-lg-6.col-mb-12.box-top {
    display: none;
}
.icon-link .badge {   
    font-size: 10px !important;   
}
	.hero-title {   
    font-size: 2.5rem !important;    
}
.hero-section {
    position: relative;
    height: 64vh;
    min-height: 570px;
    overflow: hidden;
}
}

@media only screen and (max-width: 767px) {
 
    
.promo-box { 
    min-height: 400px;
    transition: transform 0.3s ease;
}
.tabs .nav-link {
    width: 100%;
}

a.btn.btn-view-all-products {
    display: none !important;
}
.plp-card .product-image {
    height: 200px;
}
.product-image {  
    margin-bottom: 4px;
}

.testimonial-card {
    border-radius: 20px;
    padding: 10px 10px;   
}
.testimonials-swiper-container {  
    padding: 0 10px;
}
.col-auto {
    flex: 0 0 auto;
    width: 100%;
}
.btn-add-cart {   
    font-size: 14px !important;  
    width: auto !important;  
}
.related-products-slider {
        padding: 0 4px !important; 
    }
span.logo-number img {
    width: 86px;
    height: auto;
}
}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 574px) {
 h1 { font-size: 36px!important; }
    h2 { font-size: 28px !important; }
    h3 { font-size: 24px!important; }
    h4 { font-size: 20px !important; }
    h5 { font-size: 18px !important; }
    h6 {font-size: 17px !important;}
    p { font-size: 15px !important;}
    span, a, li, label { font-size: 15px !important;}

.timer-box {   
    padding: 15px 10px;   
    min-width: 72px;   
}
}


@media only screen and (max-width: 480px) {
.d-flex.align-items-center.gap-2.shot-box-area {
    display: none !important;
}
}

@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}
