:root {
    --jp-gold: #b8860b;
    --jp-dark: #0f0f0f;
    --jp-light: #f8f5f0;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    background-color: var(--jp-light);
}

.topbar {
    background: var(--jp-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    text-align: center;
}

.navbar {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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




.nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 8px 12px !important;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--jp-gold) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--jp-gold);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--jp-gold);
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-icons a {
    color: #333;
    font-size: 1.2rem;
}

/* Mobile dropdowns inside collapse */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static !important;
    float: none;
    background: #fff;
    box-shadow: none;
    border: none;
    margin-left: 15px; /* thoda indent */
  }
}






.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    padding: 60px 0;
}

.hero h1 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.3;
    color:#fff;
}

.hero p {
    font-weight: 400;
    opacity: 0.9;
    font-size: 1.1rem;
}

.btn-gold {
    background-color: var(--jp-gold);
    color: #000;
    font-weight: 500;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
}

.btn-gold:hover {
    background-color: #d4a017;
    color: #000;
}

.section-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--jp-gold);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

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

.category-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #eee;
}

.category-card span {
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 15px;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    height: 20px;
    color:black;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card .price {
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
}

.product-card .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.product-card .discount {
    color: #d32f2f;
    font-weight: 500;
    font-size: 0.85rem;
}

.footer {
    background: var(--jp-dark);
    color: #cfcfcf;
    padding: 50px 0 20px;
}

.footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--jp-gold);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.stone-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.search-box {
    position: relative;
    width: 200px;
}

.search-box input {
    padding-left: 35px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 10px;
    color: #999;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--jp-gold);
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* shopcss */
.shop-header {
    background-color: var(--jp-dark);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.filter-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-title {
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.filter-option {
    margin-bottom: 0.5rem;
}

.sort-dropdown {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
}

.view-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-toggle-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.view-toggle-btn.active {
    background-color: var(--jp-gold);
    color: white;
    border-color: var(--jp-gold);
}

.product-hero {
    background-color: white;
    padding: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--jp-gold);
}

.product-title {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color :var(--jp-dark);
    text-decoration: none;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jp-dark);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-left: 10px;
}

.discount-badge {
    background-color: #d32f2f;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-left: 10px;
}



.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.benefit-icon {
    color: var(--jp-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.nav-tabs .nav-link {
    color: var(--jp-dark);
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: var(--jp-gold);
    border-bottom: 2px solid var(--jp-gold);
}

.related-product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cart-header {
    background-color: var(--jp-dark);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.cart-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.item-numerology {
    font-size: 0.9rem;
    color: var(--jp-gold);
    margin-bottom: 0.5rem;
}

.item-price {
    font-weight: 600;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.quantity-selector {
    width: 120px;
}

.summary-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}



.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart-icon {
    font-size: 3rem;
    color: var(--jp-gold);
    margin-bottom: 1rem;
}

.checkout-page {
    --chk-gold: #b8860b;
    --chk-dark: #0f0f0f;
    --chk-light: #f8f5f0;
    font-family: "Poppins", sans-serif;
    background-color: var(--chk-light);
}

.checkout-header {
    background-color: var(--chk-dark);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.checkout-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}



.checkout-summary {
    position: sticky;
    top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.btn-chk-gold {
    background-color: var(--chk-gold);
    color: #000;
    font-weight: 500;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
}

.btn-chk-gold:hover {
    background-color: #d4a017;
    color: #000;
}

.payment-method {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--chk-gold);
}

.payment-method.active {
    border-color: var(--chk-gold);
    background-color: rgba(184, 134, 11, 0.05);
}

.checkout-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
}

.numerology-badge {
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--chk-gold);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 0.25rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.price-filter input {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.active-filter .badge {
    font-size: 0.85rem;
    padding: 5px 10px;
    background-color: #d4a017;
    color: #000;
}

.active-filter a {
    text-decoration: none;
    color: #000;
}

/* About Page Styles */
.about-section {
    background-color: #fff;
}

.process-step {
    background-color: rgba(184, 134, 11, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.bg-gold {
    background-color: var(--jp-gold);
}

/* Contact Page Styles */
.text-gold {
    color: var(--jp-gold);
}

.contact-info-card {
    border-left: 4px solid var(--jp-gold);
}

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

.social-icon:hover {
    transform: translateY(-3px);
}

.bg-facebook { background-color: #3b5998; }
.bg-instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.bg-twitter { background-color: #000; }
.bg-whatsapp { background-color: #25D366; }

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .process-step {
        padding: 1rem;
    }
}
