@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
  font-family:'Montserrat', sans-serif;
  background: #fff;
}

.product-box, .product-detail-box {
  border-radius:18px;
  padding:30px;
}

.product-box img, .product-detail-box img {
  max-width:100%;
}

.product-card{
  text-decoration: none;
}
.product-info { text-align:center; margin-top:10px; color: #000;}
.product-info .name { font-size:14px; }

/* QTY */
.qty {
  display: flex;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  overflow: hidden;
  width: 120px;
}

.qty button {
  width: 35px;
  background: #fff;
  border: none;
  font-size: 18px;
}

.qty input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
}

/* REMOVE */
.remove-btn {
  margin-left: auto;
  font-size: 18px;
  cursor: pointer;
  color: #000;
}

/* SUMMARY */
.cart-summary {
  background: #f9f9f9;
  padding: 22px;
  border-radius: 18px;
}

/* ===== CART PAGE ===== */

.cart-row {
  display: flex;
  align-items: center;
  background: #f1f6fb;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 16px;
  gap: 16px;
}

.cart-row img {
  width: 95px;
  padding: 10px;
  border-radius: 14px;
}

.cart-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-price {
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
}

/* HEADER */
.site-header {
    width: 100%;
    height: auto;
}

.header-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= FOOTER ================= */
.site-footer {
    background: linear-gradient(180deg, #020924, #01051a);
    color: #fff;
    padding-top: 40px;
}

/* TOP */
.footer-top {
    text-align: center;
}

.footer-logo {
    max-width: 230px;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu li {
    font-size: 14px;
    cursor: pointer;
}

/* MIDDLE */
.footer-middle {
    margin-top: 35px;
    font-size: 14px;
}

.footer-hours {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 35px;
    padding: 20px 10px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-links span {
    cursor: pointer;
}

.footer-bottom p {
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.8;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    justify-content: center;
}

.map-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-menu {
        gap: 15px;
    }
}

/* ================= NAVBAR ================= */
.aarti-navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand img {
    height: 48px;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    padding: 8px 0;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c62828;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #c62828;
    transition: 0.3s;
}

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

/* Cart */
.cart-icon {
    background: #e91e63;
    color: #fff;
    font-size: 18px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
}

.cart-icon:hover {
    background: #c2185b;
}

/* Mobile */
.navbar-toggler {
    border: none;
}

/* ================= CATEGORY BANNER ================= */
.category-banner {
    padding: 60px 0;
    background: #fff;
}

.category-banner img {
    width: 100%;
    border-radius: 22px; /* optional, remove if not in design */
}

/* ================= AARTI BULLION HEADING ================= */
.bullion-heading {
    padding: 5px 0 0px;
    background: #fff;
}

.bullion-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bullion-title {
    max-width: 100%;
    margin-bottom: 16px; /* space between title & line */
}

.bullion-divider {
    max-width: 100%;
}

/* ===== Description Decorative Line ===== */
.desc-line {
    display: flex;
    align-items: center;
    margin: 12px 0 24px;
}

.desc-line span {
    flex: 1;
    height: 1px;
    background: #1f3b63; /* adjust color if needed */
}

.desc-line i {
    width: 6px;
    height: 6px;
    background: #1f3b63;
    transform: rotate(45deg);
    display: inline-block;
}

/* ================= RELATED PRODUCTS TITLE ================= */
.related-title {
  padding: 25px 0 0px;
  background: #fff;
}

.related-title img {
  max-width: 100%;
}

