/* Custom Brand Colors for Nava Kundali - Elegant Black & Orange Theme */
:root {
    /* Primary Brand Color - Orange (used as accent) */
    --tg-theme-primary-50: #fff5f2;
    --tg-theme-primary-80: #ffebe6;
    --tg-theme-primary-100: #ffcdb8;
    --tg-theme-primary-200: #ffb39a;
    --tg-theme-primary-300: #ff9a7c;
    --tg-theme-primary-400: #ff815e;
    --tg-theme-primary-500: #FF7043;
    /* Main Accent Color */
    --tg-theme-primary-600: #e6633c;
    --tg-theme-primary-700: #cc5635;
    --tg-theme-primary-800: #b3492e;
    --tg-theme-primary-900: #993c26;

    /* Black and Gray shades for elegance */
    --tg-heading-color: #1a1a1a;
    --tg-heading-color-dark: #f3f4f6;
    --tg-body-color: #4a4a4a;
    --tg-black-900: #000000;
    --tg-black-800: #1a1a1a;
    --tg-black-700: #2d2d2d;
    --tg-black-600: #404040;
    --tg-gray-500: #666666;
    --tg-gray-400: #808080;
    --tg-gray-300: #999999;
    --tg-gray-200: #b3b3b3;
    --tg-gray-100: #e6e6e6;
    --tg-gray-50: #f5f5f5;

    /* Dark theme colors */
    --tg-theme-dark-primary-50: #993c26;
    --tg-theme-dark-primary-100: #b3492e;
    --tg-theme-dark-primary-200: #cc5635;
    --tg-theme-dark-primary-300: #e6633c;
    --tg-theme-dark-primary-400: #FF7043;
    --tg-theme-dark-primary-500: #ff815e;
    --tg-theme-dark-primary-600: #ff9a7c;
    --tg-theme-dark-primary-700: #ffb39a;
    --tg-theme-dark-primary-800: #ffcdb8;
    --tg-theme-dark-primary-900: #ffebe6;
}

/* Elegant Black & Orange Theme Overrides */

/* Primary Buttons - Always primary orange color */
.btn:not(.border-btn) {
    background-color: #FF7043 !important;
    border-color: #FF7043 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:not(.border-btn):hover {
    background-color: #e6633c !important;
    border-color: #e6633c !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 112, 67, 0.4);
}

/* Border Buttons - Orange border */
.btn.border-btn {
    border-color: #FF7043 !important;
    color: #FF7043 !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn.border-btn:hover {
    background-color: #FF7043 !important;
    border-color: #FF7043 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Navigation - Black text with orange accent on active/hover */
.navigation li a {
    color: #1a1a1a !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation li.active>a {
    color: #FF7043 !important;
    position: relative;
}

.navigation li.active>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF7043;
}

.navigation li:not(.active):hover>a {
    color: #FF7043 !important;
}

/* Header Logo area */
.logo {
    filter: brightness(0) saturate(100%);
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: brightness(1) saturate(100%);
}

/* Links - Subtle orange */
a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF7043;
}

/* Headings - Black with orange accent span */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1a1a1a !important;
}

.banner__content-two .title {
    color: #1a1a1a !important;
    font-weight: 700;
}

.banner__content-two .title span {
    color: #FF7043;
    position: relative;
}

/* Banner paragraph text */
.banner__content-two p {
    color: #4a4a4a !important;
    font-size: 18px;
    line-height: 1.7;
}

/* Social icons - Black with orange hover */
.banner-social ul li a {
    background-color: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.banner-social ul li a:hover {
    background-color: #FF7043;
    border-color: #FF7043;
    color: #fff;
    transform: translateY(-3px);
}

/* Feature items - Elegant black and white */
.banner-features {
    margin-top: 30px;
}

.banner-features .feature-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin: 5px;
    transition: all 0.3s ease;
}

.banner-features .feature-item:hover {
    background: rgba(255, 112, 67, 0.1);
    border-color: #FF7043;
    transform: translateY(-2px);
}

.banner-features .feature-item i {
    color: #FF7043;
    font-size: 22px;
}

.banner-features .feature-item span {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

/* Form elements - Black focus with orange accent */
input:focus,
textarea:focus,
select:focus {
    border-color: #1a1a1a !important;
    box-shadow: 0 0 0 3px rgba(255, 112, 67, 0.1) !important;
    outline: none !important;
}

/* Header Icons - Black with orange hover */
.tg-header__action .header-search a,
.tg-header__action .offCanvas-menu a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.tg-header__action .header-search a:hover,
.tg-header__action .offCanvas-menu a:hover {
    color: #FF7043;
}

/* Dark/Light theme switcher - Black with orange accent */
.dark-light-switcher {
    background-color: #f5f5f5 !important;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.dark-light-switcher:hover {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a;
}

.dark-light-switcher:hover .theme-icon {
    color: #FF7043;
}

/* Search elements */
.search__form button {
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.search__form button:hover {
    background-color: #FF7043;
}

/* Scrollbar - Elegant black */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 5px;
}

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

/* Selection - Orange accent */
::selection {
    background-color: rgba(255, 112, 67, 0.2);
    color: #1a1a1a;
}

::-moz-selection {
    background-color: rgba(255, 112, 67, 0.2);
    color: #1a1a1a;
}

/* Mobile menu */
.tgmobile__menu-box .navigation li a {
    color: #1a1a1a;
}

.tgmobile__menu-box .navigation li.active>a,
.tgmobile__menu-box .navigation li:hover>a {
    color: #FF7043;
}

/* Utility classes */
.text-primary {
    color: #FF7043 !important;
}

.text-black {
    color: #1a1a1a !important;
}

.bg-primary {
    background-color: #FF7043 !important;
}

.bg-black {
    background-color: #1a1a1a !important;
}

.border-primary {
    border-color: #FF7043 !important;
}

.border-black {
    border-color: #1a1a1a !important;
}

/* Scroll to top button */
.scroll__top {
    background-color: #1a1a1a !important;
    color: #fff !important;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.scroll__top:hover {
    background-color: #FF7043 !important;
    border-color: #FF7043 !important;
    transform: translateY(-3px);
}

/* Header action buttons */
.tg-header__action .btn {
    background-color: #FF7043 !important;
    border-color: #FF7043 !important;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tg-header__action .btn:hover {
    background-color: #e6633c !important;
    border-color: #e6633c !important;
    transform: translateY(-2px);
}

/* Navigation Layout - Shift to right */
.tgmenu__navbar-wrap {
    margin-left: auto !important;
    margin-right: 20px;
}

.tgmenu__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tgmenu__nav {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

/* Off-canvas menu styling */
.offCanvas__info {
    background-color: #1a1a1a !important;
}

.offCanvas__info h4 {
    color: #FF7043 !important;
}

.offCanvas__info p {
    color: #b3b3b3 !important;
}

.offCanvas__social-icon a {
    background-color: transparent;
    border: 1px solid #4a4a4a;
    color: #b3b3b3;
    transition: all 0.3s ease;
}

.offCanvas__social-icon a:hover {
    background-color: #FF7043;
    border-color: #FF7043;
    color: #fff;
}

/* Astrologer Cards Styling */
.astrologer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.astrologer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.astrologer-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.experience-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF7043;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.astrologer-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.astrologer-name {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.astrologer-designation {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.astrologer-info {
    margin-bottom: 20px;
    flex-grow: 1;
}

.astrologer-info .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #4a4a4a;
}

.astrologer-info .info-item i {
    color: #FF7043;
    width: 16px;
}

.astrologer-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.astrologer-actions .btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
}

.btn-outline-primary {
    color: #FF7043 !important;
    border-color: #FF7043 !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background-color: #FF7043 !important;
    color: white !important;
}

/* Product Cards Styling */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 112, 67, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.price-label {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 3px;
}

.price-amount {
    color: #FF7043;
    font-size: 22px;
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-value {
    color: #1a1a1a;
    font-weight: 600;
    margin-left: 3px;
}

.rating-count {
    color: #666;
    font-size: 13px;
}

.product-actions {
    margin-top: auto;
}

.product-actions .btn {
    padding: 10px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Section spacing */
.astrologers-section,
.bazaar-section {
    background: #f9f9f9;
}

.astrologers-section {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .astrologer-image,
    .product-image {
        height: 180px;
    }

    .astrologer-card,
    .product-card {
        margin-bottom: 20px;
    }
}


.kundali-hero {
    background: linear-gradient(135deg, #f1efef 0%, #dad7d6 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.kundali-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url("{% static 'landing/img/background.jpg' %}") center/cover; */
    opacity: 0.1;
    z-index: 1;
}

.kundali-hero .container {
    position: relative;
    z-index: 2;
}