body {
  width: 100%;
  height: 100%;
  padding: 20px;
}
h1, h2, h3, h4, h5, h6 {
  color: #444;
}
legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 12px;
  font-weight: normal;
}
/* Chrome border line */
button:focus {
  outline: none !important;
}
/* container */
#container {
  width: 100%;
  min-height: 100%;
  position: relative; /* or remove completely */
}
#content, #column-left, #column-right {
  padding-bottom: 100px;
}
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}
/* top */
#top {
  background-color: var(--bs-tertiary-bg);
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}
#top ul.list-inline {
  margin-bottom: 0;
}
#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  font-size: 1.1em;
  color: var(--bs-gray-600);
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 767px) {

    /* FORCE override bootstrap */
    #header .row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
    }

    /* LOGO */
    #header .row > div:nth-child(1) {
        width: 30% !important;
        max-width: 30% !important;
        flex: 0 0 30% !important;
    }

    /* SEARCH */
    #header .row > div:nth-child(2) {
        width: 70% !important;
        max-width: 70% !important;
        flex: 0 0 70% !important;
    }

    /* CART BELOW */
    #header .row > div:nth-child(3) {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 8px;
        text-align: right;
    }

    /* SEARCH FIX */
    #search {
        width: 100% !important;
    }

    #search input {
        width: 100% !important;
    }

    /* MENU SCROLL */
    #menu .navbar-nav {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 15px;
        justify-content: flex-start !important;
        padding: 0 10px;
    }

    #menu .navbar-nav::-webkit-scrollbar {
        display: none;
    }
}
/* logo */
#logo {
  text-align: center;
}
#logo img {
  max-width: 120px;
}
@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
}
/* search */
#search {
  margin-bottom: 10px;
}
#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
}
/* cart */
#cart {
  margin-bottom: 10px;
}
#cart .img-thumbnail {
  min-width: 100px;
}
#cart .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 14px 35px;
}
#cart .dropdown-menu {
  background: #eee;
}
#cart .dropdown-menu li {
  min-width: 300px;
}
#menu {
  background: #ffffff !important; /* change to white */
  border-top: 1px solid #e8d9a0;
  border-bottom: 1px solid #e8d9a0;
  min-height: 40px;
  border-radius: 0; /* remove rounded corners */
  padding: 0; /* ❌ remove side gap */
  margin: 0; /* remove outer gap */
  width: 100%;
}
#menu .container {
  max-width: 100% !important;
  width: 100%;
  padding: 0;
}
#menu .navbar-nav > li > a {
  padding: 12px 18px;
}
#menu .navbar-nav > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}
#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}
@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .navbar-toggler i {
  color: #fff;
  border-color: #fff;
  font-size: 0.9em;
}
/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}
.nav-tabs {
  margin-bottom: 15px;
}
.form-check .form-check-input {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* footer */
footer {
  border: 1px solid #000000;
  position: relative;
  bottom: -1px;
  width: 100%;
  padding-top: 30px;
  background-color: #303030;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-tertiary-bg);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: 0 1px 0 #FFF;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 29px;
  height: 29px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}
.product-thumb {
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .description {
  padding: 15px;
  margin-bottom: 45px;
}
.product-thumb .description h4 {
  font-weight: bold;
}
.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-gray-600);
  line-height: 38px;
  text-align: center;
}
.product-thumb .button button:hover {
  color: var(--bs-gray-600);
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}
@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
    border-left: 1px solid #ddd;
    width: calc(100% -  15px);
    margin-left: 15px;
  }

.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}
.rating .fa-star + .fa-star {
  color: #E69500;
}
/* product list */
.price {
  color: #444;
}
.price-new {
  font-weight: 600;
}
.price-old {
  color: #dc512c;
  text-decoration: line-through;
}
.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}
/* blog */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}
/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}
/* Header */
#header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

/* Main Menu Bar */
.navbar,
.navbar-default,
.navbar-collapse {
    background-color: #ffffff !important;
    border-top: 1px solid #e8d9a0;
    border-bottom: 1px solid #e8d9a0;
}

/* Menu Items */
.navbar-nav {
    display: flex;
    justify-content: center; /* center align = luxury feel */
    gap: 25px;
}

/* Menu Text */
.navbar-nav > li > a {
    color: #b8962e !important;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 10px;
    position: relative;
}
/* ===== LUXURY HEADER SPACING ===== */
#header {
    padding: 18px 40px;
    background: #ffffff;
}

/* Logo refinement */
#logo img {
    max-width: 120px;
}

/* ===== MENU BAR PREMIUM LOOK ===== */
#menu {
    background: #ffffff !important;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0;
    margin: 0;
}

/* Center full width */
#menu .container {
    max-width: 1400px;
    margin: auto;
}

/* ===== MENU ITEMS ===== */
#menu .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px; /* more breathing space */
}

/* Menu text */
#menu .navbar-nav > li > a {
    color: #b8962e !important;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 18px 0;
    position: relative;
}

/* ===== LUXURY UNDERLINE ANIMATION ===== */
#menu .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 1.5px;
    background: #d4af37;
    transition: 0.35s ease;
    transform: translateX(-50%);
}

#menu .navbar-nav > li > a:hover::after {
    width: 70%;
}

/* ===== HOVER TEXT ===== */
#menu .navbar-nav > li > a:hover {
    color: #d4af37 !important;
}

/* ===== ADD SUBTLE DEPTH ===== */
#menu {
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

/* ===== SEARCH + CART ALIGNMENT ===== */
#header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Search more premium */
#search input {
    border: 1px solid #ddd !important;
    padding: 10px;
}

/* Cart refinement */
#cart .btn {
    border-radius: 6px;
    padding: 10px 20px;
}

/* Elegant Hover Line */
.navbar-nav > li > a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 50%;
    bottom: 5px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav > li > a:hover::after {
    width: 60%;
}

/* Hover Text */
.navbar-nav > li > a:hover {
    color: #d4af37 !important;
}

/* Soft Shadow for depth */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* REMOVE black side blocks + full width menu */
.navbar,
.navbar-default {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

/* Override container restriction */
.navbar .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

/* Ensure single line layout */
.navbar-nav {
    width: 100%;
    flex-wrap: nowrap; /* prevents breaking */
    justify-content: center;
}

/* Remove any side gaps */
body {
    margin: 0;
}
#header-cart .btn {
    background: #000;
    color: #d4af37;
    border: 1px solid #d4af37;
}#search input {
    border: 1px solid #d4af37;
}

#search button {
    background: #000;
    color: #d4af37;
}
/* Cart Button Gold Style */
#cart .btn {
    background-color: #000 !important;
    color: #d4af37 !important;
    border: 1px solid #d4af37 !important;
}

/* Cart icon */
#cart .btn i {
    color: #d4af37 !important;
}

/* Hover effect */
#cart .btn:hover {
    background-color: #111 !important;
    color: #ffd700 !important;
    border-color: #ffd700 !important;
}
/* Align header elements in one line */
#header .row {
    display: flex;
    align-items: center;
}
/* Search input */
#search input {
    border: 1px solid #d4af37;
    height: 42px;
    border-radius: 4px 0 0 4px;
}

/* Search button */
#search button {
    background: #000;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-left: none;
}

/* Hover effect */
#search button:hover {
    background: #111;
    color: #ffd700;
}
#search {
    max-width: 450px;
    margin: auto;
}
#cart {
    text-align: right;
}
/* Search Input */
#search .form-control.form-control-lg {
    border: 1px solid #d4af37 !important;
    height: 42px;
    background-color: #fff;
}

/* Search Button */
#search .btn {
    background-color: #000 !important;
    color: #d4af37 !important;
    border: 1px solid #d4af37 !important;
}

/* Hover Effect */
#search .btn:hover {
    background-color: #111 !important;
    color: #ffd700 !important;
}

/* ===== FEATURED PRODUCTS LUXURY STYLE ===== */

.product-thumb{
    border:none;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

/* Hover Card Effect */

.product-thumb:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
}
.product-thumb .image img{
    border-radius:6px;
}

/* Product Info */

.product-thumb .description{
    padding:15px 20px 20px;
}

/* Product Title */

.product-thumb h4 a{
    font-size:16px;
    font-weight:600;
    color:#111;
    text-decoration:none;
}

.product-thumb h4 a:hover{
    color:#b8962e;
}

/* Price */

.price{
    font-size:16px;
    font-weight:600;
    color:#000;
}

/* Old Price */

.price-old{
    color:#999;
}

/* Product Buttons */

.product-thumb .button{
    background:#fff;
}

.product-thumb .button button{
    background:#fff;
    color:#444;
    border-top:1px solid #eee;
    transition:all .3s ease;
}

/* Button Hover */

.product-thumb .button button:hover{
    background:#b8962e;
    color:#fff;
}
/* Featured Section Title */

.featured-title{
    color:#b8962e;
    font-size:34px;
    font-weight:600;
    letter-spacing:1px;
    margin:60px 0 40px;
    padding-left:10px;
    position:relative;
}

/* luxury underline */

.featured-title::after{
    content:"";
    width:70px;
    height:3px;
    background:#b8962e;
    display:block;
    margin-top:10px;
}
footer {
  background-color: #000000; /* solid black background */
  color: #d4af37; /* elegant gold text */
  padding: 30px 20px;
  border-top: 1px solid #b8962e; /* subtle gold border on top */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  text-align: center;
}

/* Links inside footer */
footer a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffd700; /* brighter gold on hover */
  text-decoration: underline;
}

/* Footer headings */
footer h5 {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Optional: subtle fade effect for paragraph or smaller text */
footer p, footer small {
  color: #b89c44;
  font-size: 14px;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;

  padding: 10px 16px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
  z-index: 99999;

  transition: all 0.3s ease;
}

/* Icon */
.whatsapp-float img {
  width: 20px;
  height: 20px;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.05);
}
.whatsapp-float p {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}
.whatsapp-float img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain;
}
.shop-category-overlay{
    text-align:center;
    max-width:1200px;
    margin:auto;
}
/* ===== Ethnic Heirlooms Theme Override (Remove Blue Colors) ===== */

/* Links */
a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #d4af37 !important;
}

/* Rating Stars */
.rating .fa-star,
.rating .fa-star + .fa-star {
  color: #d4af37 !important;
}

/* Review Links */
#product-product .rating a {
  color: #000 !important;
}

#product-product .rating a:hover {
  color: #d4af37 !important;
}

/* Add to Cart Button */
#button-cart {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #d4af37 !important;
  font-weight: 600;
}

#button-cart:hover {
  background-color: #111 !important;
  border-color: #d4af37 !important;
  color: #ffd700 !important;
}

/* Wishlist & Compare Buttons */
.btn-outline-secondary {
  background: #000 !important;
  color: #d4af37 !important;
  border: 1px solid #d4af37 !important;
}

.btn-outline-secondary:hover {
  background: #111 !important;
  color: #ffd700 !important;
}

/* Product Price Styling */
.price-new {
  color: #000 !important;
  font-weight: 700;
  font-size: 22px;
}

/* Breadcrumb Links */
.breadcrumb a {
  color: #000 !important;
}

.breadcrumb a:hover {
  color: #d4af37 !important;
}/* ===== FINAL LUXURY PRODUCT CARD OVERRIDE ===== */

/* Card Upgrade */
.product-thumb {
    border: none;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

/* Hover Premium Lift */
.product-thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* Image Zoom */
.product-thumb .image img {
    transition: transform .5s ease;
}

.product-thumb:hover .image img {
    transform: scale(1.08);
}

/* Content */
.product-thumb .description {
    padding: 18px;
    margin-bottom: 60px;
    text-align: center;
}

/* Title */
.product-thumb h4 a {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.3px;
}

.product-thumb h4 a:hover {
    color: #d4af37;
}

/* Price */
.price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* ===== BUTTONS FIX (MOST IMPORTANT) ===== */

.product-thumb .button {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
}

/* Remove old 33% style */
.product-thumb .button button {
    width: 42px !important;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #444;
    transition: all .3s ease;
    font-size: 16px;
}

/* Luxury Hover */
.product-thumb .button button:hover {
    background: #000;
    color: #d4af37;
    transform: scale(1.12);
}

/* Remove borders between buttons */
.product-thumb .button button + button {
    border-left: none !important;
}

/* Optional Glow Effect */
.product-thumb:hover .button button {
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}
/* ===== REMOVE EXTRA SPACE (FORCE FIX) ===== */

#content, 
#column-left, 
#column-right {
  padding-bottom: 50px !important;
}

/* Fix container */
#container {
  position: relative !important;
  min-height: auto !important;
}

/* Fix footer */
footer {
  position: relative !important;
  bottom: auto !important;
}
  h1 {
    font-size: 22px !important;
  }

  h2 {
    font-size: 18px !important;
  }
}
/* ============================= */
/* 📱 PREMIUM LUXURY MOBILE UI */
/* ============================= */

@media (max-width: 768px) {

  /* ===== BODY ===== */
  body {
    padding: 12px !important;
    background: #ffffff;
  }

  /* ===== HEADER ===== */
  #header .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  #header .row > div:nth-child(1) {
    width: 30%;
  }

  #header .row > div:nth-child(2) {
    width: 70%;
  }

  #header .row > div:nth-child(3) {
    width: 100%;
    margin-top: 10px;
    text-align: right;
  }
 /* ===== RESET HEADER GRID ===== */
  #header .row {
    display: block !important;
  }

  #header .row > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  /* ===== LOGO (TOP CENTER) ===== */
  #logo {
    text-align: center;
    margin-bottom: 12px;
  }

  #logo img {
    max-height: 45px;
  }

  /* ===== SEARCH (FULL WIDTH) ===== */
  #search {
    width: 100%;
    margin-bottom: 12px;
  }

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

  #search input {
    width: 100%;
    height: 45px;
    border: 1px solid #d4af37;
    border-radius: 25px 0 0 25px;
    padding-left: 15px;
  }

  #search button {
    border-radius: 0 25px 25px 0;
    background: #000;
    color: #d4af37;
    border: 1px solid #d4af37;
  }

  /* ===== VIEW CART (FULL WIDTH BELOW SEARCH) ===== */
  #cart {
    width: 100%;
    text-align: center;
  }

  #cart .btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
  }
  /* ===== MENU ===== */
  #menu .navbar-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 18px;
    padding: 10px 5px;
  }

  #menu .navbar-nav li a {
    color: #000 !important;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  /* ===== 🔥 BANNER FIX (BIGGER LIKE YOU ASKED) ===== */
  .swiper-container,
  .swiper-wrapper,
  .swiper-slide {
    height: 260px !important;
  }

  .swiper-slide img {
    width: 100%;
    height: 260px !important;
    object-fit: cover;
    border-radius: 10px;
  }

  /* ===== FEATURED TITLE ===== */
  .featured-title {
    font-size: 24px !important;
    text-align: left;
    margin: 35px 0 20px;
    color: #b8962e;
    position: relative;
  }

  .featured-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #d4af37;
    display: block;
    margin-top: 8px;
  }

  /* ===== PRODUCT CARD ===== */
  .product-thumb {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  /* ===== ROUND BUTTONS ===== */
  .product-thumb .button {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .product-thumb .button button {
    width: 36px !important;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    color: #444;
  }

  .product-thumb .button button:hover {
    background: #000;
    color: #d4af37;
  }

  /* ============================= */
  /* 🚫 REMOVE BLACK BACKGROUND */
  /* ============================= */
  .shop-category-section {
    background: #ffffff !important;
    padding: 20px 0;
  }

  /* ===== CATEGORY CARD ===== */
  .shop-category-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }

  .shop-category-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* ============================= */
  /* ✨ TEXT FIX (NO WHITE TEXT) */
  /* ============================= */
  .shop-category-overlay h3 {
    color: #000 !important;
    font-size: 16px;
    font-weight: 600;
    text-shadow: none !important;
  }

  .shop-category-overlay p {
    color: #777 !important;
    font-size: 12px;
    text-shadow: none !important;
  }

  /* ===== BUTTON FIX (THEME STYLE) ===== */
  .shop-category-overlay a {
    background: transparent !important;
    border: 1px solid #d4af37;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

  .shop-category-overlay a:hover {
    background: #d4af37;
    color: #000 !important;
  }

  /* ===== WHATSAPP SMALL PREMIUM ===== */
  .whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 15px;

    padding: 8px 12px;
    border-radius: 30px;

    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;

    font-size: 12px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 6px;
  }

  .whatsapp-float img {
    width: 18px;
    height: 18px;
  }

  .whatsapp-float p {
    margin: 0;
  }

  /* ===== TYPOGRAPHY ===== */
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }

  /* ===== IMAGE ===== */
  img {
    max-width: 100%;
    height: auto;
  }

  /* ===== SPACING ===== */
  #content,
  #column-left,
  #column-right {
    padding-bottom: 40px;
  }
  /* REMOVE DARK BACKGROUND */
  #menu,
  #menu .navbar,
  #menu .navbar-collapse {
    background: #ffffff !important;
  }

  /* SCROLLABLE MENU */
  #menu .navbar-nav {
    display: flex !important;
    overflow-x: auto;
    white-space: nowrap;
    gap: 18px;
    padding: 10px 10px;
  }

  /* CATEGORY TEXT FIX */
  #menu .navbar-nav > li > a {
    color: #000 !important;   /* remove white */
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    background: transparent !important;
  }

  /* ACTIVE / HOVER STYLE */
  #menu .navbar-nav > li > a:hover,
  #menu .navbar-nav > li.active > a {
    color: #d4af37 !important;
  }

  /* ===== OPTIONAL: BUTTON STYLE (LIKE YOU SAID "ONE BUTTON RIGHT") ===== */
  #menu .navbar-nav > li:last-child a {
    border: 1px solid #d4af37;
    border-radius: 20px;
    padding: 5px 12px;
    color: #d4af37 !important;
  }

  #menu .navbar-nav > li:last-child a:hover {
    background: #d4af37;
    color: #000 !important;
  }

  /* REMOVE ANY DEFAULT WHITE TEXT */
  #menu * {
    color: inherit !important;
  }
  /* Make product images proportional */
  .product-layout img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Center product info */
  .product-layout .description {
    text-align: center;
    padding: 10px 5px 20px;
  }

  /* Remove extra buttons space */
  .product-layout .button {
    justify-content: center;
    gap: 8px;
  }

  /* Optional: Reduce card shadow for mobile */
  .product-thumb {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
    /* Flex container for products */
  .row > .product-layout,
  .product-grid,
  .related-products,
  .bestsellers,
  .featured-products {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px;
    justify-content: space-between;
  }

  /* Individual product cards */
  .row > .product-layout,
  .product-thumb,
  .product-card {
    flex: 0 0 48% !important; /* 2 products per row */
    box-sizing: border-box;
    margin-bottom: 10px !important;
  }

  /* Ensure images scale */
  .product-thumb img,
  .product-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  /* Center product info */
  .product-thumb .caption,
  .product-card h4,
  .product-card h5,
  .product-card .price {
    text-align: center;
  }
/* Force exact height */
  .carousel-inner,
  .carousel-item {
    height: 320px !important;
  }

 .carousel-item img {
    width: 605px;  /* proportional width */
    height: 320px; /* desired height */
  }

  /* 🔥 OVERRIDE OLD SWIPER HEIGHTS (IMPORTANT) */
  .swiper,
  .swiper-container,
  .swiper-wrapper,
  .swiper-slide {
    height: 320px !important;
  }
  #cart .dropdown-menu li {
    min-width: 100%;
  }
  /* 1️⃣ Show 2 products per row */
  .product-grid .product-layout {
    width: 48%; /* 2 products per row with some gap */
    margin: 1%; /* small spacing */
    float: left;
  }

  /* 2️⃣ Hide Compare button */
  .product-layout .compare {
    display: none !important;
  }

  /* Optional: Fix product image scaling */
  .product-layout img {
    width: 100%;
    height: auto;
  }

}
/* ============================= */
/* 🔥 REMOVE ALL BLUE COLORS */
/* ============================= */

/* GLOBAL LINKS FIX */
a,
a:link,
a:visited {
  color: #000 !important;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #d4af37 !important;
}

/* BOOTSTRAP BLUE REMOVE */
.text-primary,
.btn-primary,
.bg-primary {
  color: #d4af37 !important;
  background-color: #000 !important;
  border-color: #d4af37 !important;
}

/* ============================= */
/*  PRODUCT NAME FIX */
/* ============================= */

.product-thumb h4 a,
.product-layout h4 a,
.product-grid h4 a {
  color: #000 !important;   /* REMOVE BLUE */
  font-weight: 600;
}

.product-thumb h4 a:hover {
  color: #d4af37 !important;
}

/* ============================= */
/* 🛒 CART BUTTON FULL FIX */
/* ============================= */

#cart .btn,
#header-cart .btn,
button.btn-cart,
#button-cart {
  background: #000 !important;
  color: #d4af37 !important;
  border: 1px solid #d4af37 !important;
  box-shadow: none !important;
}

#cart .btn:hover,
#button-cart:hover {
  background: #111 !important;
  color: #ffd700 !important;
  border-color: #ffd700 !important;
}

/* ICON COLOR */
#cart .btn i {
  color: #d4af37 !important;
}

/* ============================= */
/* 🔥 REMOVE ANY REMAINING BLUE */
/* ============================= */

/* LINKS INSIDE PRODUCT */
.product-thumb a {
  color: #000 !important;
}

.product-thumb a:hover {
  color: #d4af37 !important;
}

/* BREADCRUMB BLUE FIX */
.breadcrumb a {
  color: #000 !important;
}

.breadcrumb a:hover {
  color: #d4af37 !important;
}

/* PAGINATION */
.pagination li a {
  color: #000 !important;
}

.pagination li.active span {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #000 !important;
}

/* BUTTON LINKS */
.btn-link {
  color: #000 !important;
}

.btn-link:hover {
  color: #d4af37 !important;
}
/* ============================= */
/* 🚨 FORCE GOLD FOOTER TEXT */
/* ============================= */

/* FORCE ALL LINKS GOLD (NORMAL STATE) */
footer a,
footer a:link,
footer a:visited {
  color: #d4af37 !important;
}

/* KEEP HOVER GOLD (SLIGHT BRIGHT) */
footer a:hover,
footer a:focus {
  color: #ffd700 !important;
}

/* FORCE ANY BOOTSTRAP / MUTED TEXT */
footer .text-muted,
footer .text-body,
footer .text-dark,
footer .text-secondary {
  color: #d4af37 !important;
}

/* FORCE LIST LINKS */
footer ul li a {
  color: #d4af37 !important;
}

/* FORCE ANY STRONG SELECTORS */
footer * {
  color: #d4af37 !important;
}

/* OPTIONAL: KEEP ICONS GOLD */
footer i,
footer svg {
  color: #d4af37 !important;
}
/* ============================= */
/* 💎 CLEAN BANNER (NO CUT IMAGE) */
/* ============================= */

.banner-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* IMAGE FULL FIT */
.banner-img {
  width: 100%;
  height: auto;       /* 🔥 IMPORTANT: prevents crop */
  object-fit: contain; /* ensures full image visible */
  display: block;
}

/* REMOVE ZOOM (since it causes crop illusion) */
.carousel-item.active .banner-img {
  transform: none !important;
}
/* ============================= */
/* 🌟 PREMIUM CAROUSEL EFFECT */
/* ============================= */

/* Smooth fade transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Image zoom effect */
.carousel-item img {
  transition: transform 6s ease-in-out;
  width: 100%;
}

/* Zoom animation when active */
.carousel-item.active img {
  transform: scale(1.08);
}

/* Prevent jump effect */
.carousel-inner {
  overflow: hidden;
}

/* Optional: softer arrows */
.carousel-control-prev span,
.carousel-control-next span {
  font-size: 22px;
  color: #d4af37; /* gold */
}


