/* 
   Rudraksh Store - Main Stylesheet
   Based on the design theme from the screenshot
   Updated with styles for all pages: Home, About, Products, Blog, Contact
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f4f4f4;
    line-height: 1.6;
    background: #050505;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Header Styles */
header {
    background: radial-gradient(circle at top left, rgba(255, 102, 0, 0.22), rgba(0, 0, 0, 0.95));
    padding: 20px 0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.65);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 102, 0, 0.1), transparent 60%);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo a {
    display: flex;
    align-items: center;
}

/* Logo animation keyframes */
@keyframes logoAnimation {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 102, 0, 0));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 102, 0, 0));
    }
}

/* Special logo animation keyframes */
@keyframes logoSpecialAnimation {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.15) rotate(-5deg);
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    75% {
        transform: scale(1.15) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Special animation class applied via JavaScript */
.logo-special-animation {
    animation: logoSpecialAnimation 2s ease-in-out !important;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.9)) brightness(1.2) !important;
}

.logo-img {
    max-height: 90px;
    width: auto;
    animation: logoAnimation 3s infinite ease-in-out;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Add hover effect for interactive animation */
.logo a:hover .logo-img {
    animation-play-state: paused;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.8));
}

.search-bar {
    display: flex;
    width: 42%;
    height: 48px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255, 102, 0, 0.3);
    background: rgba(12, 12, 12, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

.search-bar input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: 14px;
    background: transparent;
    color: #f8f8f8;
}

.search-bar button {
    width: 54px;
    height: 100%;
    background: linear-gradient(135deg, #ff8a00, #ff3d00);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.search-bar button:hover {
    transform: scale(1.05);
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.search-bar input:focus {
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-btn, .cart-btn {
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
    color: #f4f4f4;
}

.account-btn:hover, .cart-btn:hover {
    color: #ff8a00;
    transform: translateY(-2px);
}

.account-btn i, .cart-btn i {
    margin-right: 5px;
}

.cart-btn {
    position: relative;
}

.cart-count {
    background-color: #ff6600;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 5px;
}

.language-selector {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fefefe;
    background: rgba(10, 10, 10, 0.85);
    padding: 6px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
    border: 1px solid rgba(255, 102, 0, 0.35);
    box-shadow: 0 10px 28px rgba(255, 102, 0, 0.25);
    backdrop-filter: blur(4px);
}

.language-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 102, 0, 0.3);
}

.flag-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.flag-icon img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.country-name {
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #ffb347;
    display: inline-flex;
    align-items: center;
}

.country-name::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
    color: rgba(255, 255, 255, 0.55);
}

/* Navigation Bar */
.main-nav {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 100%);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 102, 0, 0.18);
    border-bottom: 1px solid rgba(255, 102, 0, 0.12);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: #efefef;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8a00, transparent);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: #ff8a00;
    transform: translateY(-2px);
}

.nav-list a:hover::after {
    width: 70%;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Mobile toggle will be shown in mobile-menu.css with media query */

.store-actions {
    display: flex;
    gap: 26px;
}

.store-pickup, .free-shipping {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(12, 12, 12, 0.7);
    border: 1px solid rgba(255, 102, 0, 0.18);
    box-shadow: 0 8px 18px rgba(255, 102, 0, 0.12);
}

.store-pickup i, .free-shipping i {
    font-size: 24px;
    margin-right: 10px;
    color: #ff6600;
}

.pickup-info, .shipping-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.select-store, .order-info {
    font-size: 12px;
    opacity: 0.75;
    color: rgba(255, 255, 255, 0.65);
}

/* Hero Slider & Video */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #000;
}

/* Original Slider Styles */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

/* Video Hero Styles */
.video-hero {
    height: 600px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
    color: #fff;
    z-index: 1;
}

.video-content {
    max-width: 600px;
    margin-left: 5%;
}

.video-overlay .promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, rgba(255, 102, 0, 0.85), rgba(255, 157, 0, 0.75));
    padding: 10px 20px;
    border-radius: 999px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.35);
}

.video-overlay h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
    max-width: 640px;
}

.video-overlay p {
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 30px;
    margin-left: 5%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
    z-index: 1;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(255, 102, 0, 0.85), rgba(255, 157, 0, 0.75));
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-weight: 600;
    width: auto;
    letter-spacing: 0.6px;
}

.promo-tag i {
    margin-right: 5px;
}

.slide-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.highlight {
    color: #ff6600;
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(125deg, #ff8a00, #ff3d00 70%);
    color: #fff;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    width: auto;
    max-width: fit-content;
    box-shadow: 0 18px 40px rgba(255, 102, 0, 0.38);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(255, 102, 0, 0.45);
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 3;
    font-size: 16px;
    transition: background-color 0.3s;
}

.slider-nav button:hover {
    background-color: #ff6600;
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ff6600;
}

/* Top Categories */
.top-categories {
    padding: 70px 0;
    background: radial-gradient(circle at top, rgba(255, 102, 0, 0.18), transparent 55%), #050505;
    color: #fff;
    border-top: 1px solid rgba(255, 102, 0, 0.08);
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #ff8a00;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6600;
}

.top-categories .section-title::after {
    display: none;
}

.circle-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff6600;
}

.top-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    justify-items: center;
}

.category-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.35s ease, filter 0.35s ease;
    padding: 24px 18px;
    border-radius: 22px;
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.category-icon-card:hover {
    transform: translateY(-10px);
    filter: brightness(1.08);
}

.category-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 102, 0, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-in-out, background-color 0.3s;
    box-shadow: inset 0 0 18px rgba(255, 102, 0, 0.25);
}

.category-icon.active {
    background-color: #ff6600;
    transform: rotate(360deg);
}

.category-icon svg {
    width: 40px;
    height: 40px;
    transition: transform 0.5s;
}

.category-icon.active svg {
    transform: scale(1.1);
}

.category-icon-card h3 {
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin-top: 12px;
    text-align: center;
    letter-spacing: 0.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: linear-gradient(155deg, rgba(20, 20, 20, 0.92), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(255, 102, 0, 0.18);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h3 {
    padding: 18px;
    margin: 0;
    font-size: 18px;
    color: #ffb347;
    font-weight: 600;
}

.item-count {
    display: block;
    padding: 0 18px 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    letter-spacing: 0.35px;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: linear-gradient(140deg, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.9));
    color: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.section-nav {
    display: flex;
    gap: 20px;
}

.all-products-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff8a00, #ff3d00);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.all-products-link i {
    font-size: 14px;
}

.all-products-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.45);
}

.section-nav button {
    background: rgba(255, 102, 0, 0.12);
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    border: 1px solid rgba(255, 102, 0, 0.28);
}

.section-nav button.active,
.section-nav button:hover {
    background: linear-gradient(120deg, #ff8a00, #ff3d00);
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.32);
}

/* Latest Arrival Products Section */
.latest-arrivals {
    background-color: #000;
    color: #fff;
    padding: 70px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.latest-arrivals .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.latest-arrivals .section-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.title-with-dot {
    display: flex;
    align-items: center;
    gap: 15px;
}

.orange-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff6600;
    border-radius: 50%;
}

.latest-arrivals .section-title {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 36px;
    font-weight: 600;
}

.latest-arrivals .section-title::after {
    display: none;
}

.latest-arrivals .section-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.nav-link {
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-link.active,
.nav-link:hover {
    color: #ff6600;
}

.divider {
    color: #444;
}

.latest-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.latest-product-card {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.latest-product-card > a.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.latest-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.latest-product-card .product-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    padding: 10px;
    cursor: pointer;
}

.latest-product-card .product-image > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-product-card .product-image img {
    max-width: 100%;
    max-height: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s;
}

.latest-product-card:hover .product-image img {
    transform: scale(1.1);
}

.latest-product-card .product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
}

.latest-product-card .product-title {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 5px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
}

.latest-product-card .product-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-product-card .product-title a:hover {
    color: #FF5700;
    text-overflow: ellipsis;
}

.latest-product-card .price-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.latest-product-card .old-price {
    color: #777;
    text-decoration: line-through;
    font-size: 14px;
}

.latest-product-card .current-price {
    color: #ff6600;
    font-size: 18px;
    font-weight: 600;
}

.latest-product-card .rating {
    color: #ff6600;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.add-to-cart-btn {
    background-color: transparent;
    color: #ff6600;
    border: 1px solid #ff6600;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.add-to-cart-btn:hover {
    background-color: #ff6600;
    color: white;
}

.latest-arrivals-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.find-favourite {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.25), transparent 45%), #050505;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    border-bottom: 1px solid rgba(255, 102, 0, 0.08);
}

.find-favourite::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), transparent 60%);
}

.favourite-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.favourite-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.favourite-image {
    position: relative;
    padding: 30px;
    border-radius: 32px;
    background: linear-gradient(160deg, rgba(255, 102, 0, 0.12), rgba(255, 102, 0, 0.02));
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.favourite-image::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.favourite-image img {
    display: block;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 35px 70px rgba(255, 102, 0, 0.25);
    background: #080808;
}

.favourite-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 30px 0;
}

.favourite-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff7a18;
}

.favourite-description {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
}

.favourite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.shop-now-btn,
.discount-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-now-btn {
    background: linear-gradient(120deg, #ff8a00, #ff3d00);
    color: #fff;
    box-shadow: 0 18px 35px rgba(255, 102, 0, 0.35);
}

.discount-btn {
    background: rgba(255, 102, 0, 0.12);
    color: #ff7a18;
    border: 1px solid rgba(255, 102, 0, 0.35);
}

.shop-now-btn:hover,
.discount-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(255, 102, 0, 0.4);
}

.discount-btn i {
    color: #ffb347;
}

.wave-background {
    position: absolute;
    inset: auto 0 0 0;
    height: 220px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.2), transparent 55%),
                radial-gradient(circle at 80% 40%, rgba(255, 102, 0, 0.15), transparent 60%);
    filter: blur(40px);
    opacity: 0.7;
    pointer-events: none;
}

@media (max-width: 768px) {
    .find-favourite {
        padding: 60px 0 70px;
    }

    .favourite-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 18px;
        justify-items: center;
        text-align: center;
    }

    .favourite-image {
        padding: 22px;
        max-width: 320px;
    }

    .favourite-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .favourite-content {
        padding: 0;
        align-items: center;
    }

    .favourite-title {
        font-size: 34px;
        letter-spacing: 0.5px;
    }

    .favourite-description {
        font-size: 16px;
        max-width: 100%;
    }

    .favourite-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .favourite-actions .shop-now-btn,
    .favourite-actions .discount-btn {
        justify-content: center;
        width: 100%;
    }

    .wave-background {
        height: 160px;
        opacity: 0.6;
    }
}

.benefits-section {
    background: #030303;
    color: #fff;
    padding: 90px 0;
    border-top: 1px solid rgba(255, 102, 0, 0.12);
    border-bottom: 1px solid rgba(255, 102, 0, 0.08);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: linear-gradient(160deg, #111, #080808 65%, rgba(255, 102, 0, 0.12));
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 102, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: -30% -20% auto auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.35), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(255, 102, 0, 0.28);
    border-color: rgba(255, 102, 0, 0.35);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.28), rgba(255, 102, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8a00;
    font-size: 26px;
    margin-bottom: 18px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffb347;
    font-weight: 600;
}

.benefit-card p {
    color: #bbbbbb;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 28px 24px;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto 16px;
    }
}

.newsletter {
    background: linear-gradient(135deg, #080808, #050505);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: -120px -80px auto auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.35), transparent 65%);
    opacity: 0.5;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 45px 50px;
    border-radius: 28px;
    background: rgba(12, 12, 12, 0.92);
    border: 1px solid rgba(255, 102, 0, 0.18);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
}

.newsletter-text h2 {
    font-size: 36px;
    color: #ff8a00;
    margin-bottom: 12px;
    letter-spacing: 0.8px;
}

.newsletter-text p {
    color: #c8c8c8;
    font-size: 17px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 420px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-form input:focus {
    border-color: #ff8a00;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.15);
}

.newsletter-form button {
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a00, #ff3d00);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.45);
}

@media (max-width: 768px) {
    .newsletter {
        padding: 60px 0;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        padding: 32px 20px;
        border-radius: 22px;
    }

    .newsletter-text h2 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .newsletter-text p {
        font-size: 15px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: none;
        gap: 12px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-form button {
        padding: 14px 20px;
    }
}

footer {
    background: #020202;
    color: #bbbbbb;
    padding: 90px 0 40px;
    position: relative;
    border-top: 1px solid rgba(255, 102, 0, 0.12);
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 102, 0, 0.2), transparent 60%),
                radial-gradient(circle at 85% 15%, rgba(255, 102, 0, 0.18), transparent 65%);
    opacity: 0.4;
}

footer .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    footer {
        padding: 65px 0 110px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .payment-methods img {
        margin: 0 auto;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 45px;
    margin-bottom: 60px;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 12px 25px rgba(255, 102, 0, 0.35));
}

footer p {
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8a00;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff8a00, #ff3d00);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #ff8a00;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff8a00, rgba(255, 255, 255, 0));
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #c9c9c9;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul a:hover {
    color: #ff8a00;
    transform: translateX(4px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d6d6d6;
}

.contact-info i {
    color: #ff8a00;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 102, 0, 0.18);
}

.payment-methods span {
    color: #dcdcdc;
    margin-right: 10px;
    font-weight: 500;
}

.payment-methods img {
    max-height: 28px;
    filter: grayscale(100%) brightness(1.4);
}

.latest-arrivals-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Responsive styles for Latest Arrivals section */
@media (max-width: 992px) {
    .latest-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-arrivals .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .latest-product-grid {
        grid-template-columns: 1fr;
    }
}

/* New Page Styles for About Us, Products, Blog, Contact pages */

/* Page Banner Styles */
.page-banner {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.15), transparent);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.page-banner h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6600;
}

.breadcrumb {
    font-size: 15px;
    margin-top: 20px;
}

.breadcrumb a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff8533;
}

.breadcrumb span {
    color: #fff;
}

/* Category Header Section */
.category-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,102,0,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.category-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.category-icon-large::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    border-radius: 22px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.category-header-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.category-header-text p {
    font-size: 18px;
    color: #bbb;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Products Section Styling */
.products-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Sidebar Filters */
.products-sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-group {
    margin-bottom: 35px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6b35;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.filter-list a:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
    padding-left: 20px;
}

.filter-list a.active {
    color: #ff6b35;
    font-weight: 600;
    background-color: rgba(255, 107, 53, 0.1);
    padding-left: 20px;
}

/* Products Main Area */
.products-main {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.products-count p {
    color: #666;
    font-size: 15px;
}

.products-count strong {
    color: #ff6b35;
    font-weight: 600;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.products-sort label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.products-sort select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.products-sort select:hover {
    border-color: #ff6b35;
}

.products-sort select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
}

.page-link.active {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

/* About Us Page Styles */
.about-content {
    padding: 80px 0 0 0;
    background-color: #000;
    color: #fff;
    border-bottom: none;
}

/* Astrologer Section */
.astrologer-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.astrologer-image {
    flex-shrink: 0;
}

.astrologer-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6600;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.3);
}

.astrologer-details h2 {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.astrologer-titles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.astrologer-titles li {
    color: #ffffff;
    font-size: 1.1rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.astrologer-titles li::before {
    content: '✦';
    color: #ff6600;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Nakshatra Square Section */
.nakshatra-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.nakshatra-image {
    flex-shrink: 0;
}

.nakshatra-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6600;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.3);
}

.nakshatra-details h3 {
    color: #e9e9e9;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nakshatra-details h2 {
    color: #ff6600;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.nakshatra-details .tagline {
    color: #cccccc;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.nakshatra-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nakshatra-services li {
    color: #ffffff;
    font-size: 1.1rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.nakshatra-services li::before {
    content: '✦';
    color: #ff6600;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff6600;
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #fff;
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background-color: #111;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:hover {
    border-color: rgba(255, 102, 0, 0.6);
}

.accordion-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #ff6600;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #222, #111);
    color: #ff8833;
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #0a0a0a;
}

.accordion-content.active {
    max-height: 5000px;
}

.accordion-content p,
.accordion-content ol,
.accordion-content .rashi-grid,
.accordion-content .health-benefits {
    padding: 25px;
}

.accordion-content ol {
    padding-left: 45px;
}

.accordion-content ol li {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Rashi Grid Styles */
.rashi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 25px !important;
}

.rashi-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.rashi-item:hover {
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-3px);
}

.rashi-item h4 {
    color: #ff6600;
    font-size: 18px;
    margin-bottom: 10px;
}

.rashi-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Health Benefits Styles */
.health-benefits {
    padding: 25px !important;
}

.benefit-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6600;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(145deg, #222, #111);
    border-left-width: 6px;
    transform: translateX(5px);
}

.benefit-item h3 {
    color: #ff6600;
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.team-section {
    background-color: #000;
    padding-bottom: 60px;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6600;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff6600;
    margin: 15px auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.team-member p {
    color: #ff6600;
    font-size: 14px;
}

/* Products Page Styles */
.product-filter {
    padding: 30px 0;
    border-bottom: 1px solid #222;
    background-color: #000;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-left, .filter-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-filter select, .sort-filter select {
    padding: 12px 18px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #111;
    color: #fff;
    font-size: 14px;
    min-width: 200px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff6600' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 35px;
    transition: all 0.3s ease;
}

.category-filter select:focus, .sort-filter select:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-toggle button {
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.3s ease;
}

.view-toggle button:hover {
    border-color: #555;
    color: #fff;
}

.view-toggle button.active {
    background-color: #ff6600;
    color: #fff;
    border-color: #ff6600;
}

.products-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.08), transparent 70%),
                radial-gradient(circle at bottom left, rgba(255, 102, 0, 0.08), transparent 70%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Product Card Styles */
.product-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card > a.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.25);
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 220px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    border-bottom: 1px solid #333;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    z-index: 0;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.product-image img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-card:hover .product-image::after {
    opacity: 0.4;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
    backdrop-filter: blur(2px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: inline-flex;
    position: relative;
    z-index: 10;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.2s ease;
    transform: translateY(10px);
    opacity: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.overlay-btn:nth-child(2) {
    transition-delay: 0.1s;
}

.overlay-btn:hover {
    transform: translateY(0) scale(1.05);
    background: #fff;
    color: #ff6600;
}

.product-info {
    padding: 25px 20px;
    position: relative;
    background: linear-gradient(180deg, #111, #0c0c0c);
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-category {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.product-category::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 30px;
    height: 2px;
    background: rgba(255, 102, 0, 0.5);
}

.product-title {
    margin: 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.product-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
}

.product-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6600;
    transition: width 0.3s ease;
}

.product-title a:hover {
    color: #ff6600;
}

.product-title a:hover::after {
    width: 100%;
}

.product-rating {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.product-rating i {
    color: #ffb100;
    font-size: 14px;
    margin-right: 2px;
    text-shadow: 0 0 3px rgba(255, 177, 0, 0.3);
}

.product-rating span {
    color: #aaa;
    margin-left: 8px;
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.current-price {
    font-size: 22px;
    font-weight: 700;
    color: #ff6600;
    position: relative;
}

.current-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background: rgba(255, 102, 0, 0.08);
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-5deg);
}

.old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #777;
    position: relative;
}

/* Add a buy now button */
.product-card .buy-now {
    margin-top: auto;
    background: transparent;
    color: #ff6600;
    border: 1px solid #ff6600;
    padding: 10px 0;
    font-weight: 600;
    border-radius: 30px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* keep hover style minimal; visibility always on */

.buy-now:hover {
    background: #ff6600;
    color: #fff;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 12px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #333;
    font-size: 16px;
}

.pagination a.active {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    border-color: #ff6600;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.pagination a:hover:not(.active) {
    border-color: #ff6600;
    color: #ff6600;
    transform: translateY(-3px);
}

.pagination-dots {
    margin: 0 5px;
    color: #aaa;
    font-size: 16px;
}

.pagination-next {
    background-color: #111 !important;
}

/* Responsive styles for Products section */
@media (min-width: 1201px) {
    .product-image {
        height: 240px;
    }
    
    .product-image img {
        max-height: 220px;
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-image {
        height: 260px;
    }
    
    .product-image img {
        max-height: 240px;
    }
    
    .filter-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-left, .filter-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .category-filter select, .sort-filter select {
        min-width: 180px;
    }
    
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image {
        height: 320px;
    }
    
    .filter-left, .filter-right {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filter select, .sort-filter select {
        width: 100%;
        min-width: auto;
    }
    
    .view-toggle {
        display: none;
    }
    
    .page-banner h1 {
        font-size: 30px;
    }
}

.pagination-next {
    color: #ff6600 !important;
}

.pagination-next:hover {
    background: linear-gradient(135deg, #ff6600, #ff8533) !important;
    color: #fff !important;
}

/* Blog Page Styles */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post {
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: auto;
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff6600;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-date .day {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    font-size: 14px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-meta span i {
    margin-right: 5px;
    color: #ff6600;
}

.blog-title {
    margin-bottom: 15px;
    font-size: 24px;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #ff6600;
}

.blog-excerpt {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.read-more {
    display: inline-block;
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Sidebar Styles */
.sidebar-widget {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6600;
    position: relative;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #ff6600;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
}

.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.categories-widget li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.categories-widget a:hover {
    color: #ff6600;
}

.recent-post {
    display: flex;
    margin-bottom: 15px;
    gap: 15px;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.recent-post-info h4 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-info h4 a:hover {
    color: #ff6600;
}

.recent-post-info span {
    font-size: 12px;
    color: #666;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    padding: 8px 15px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.tags-cloud a:hover {
    background-color: #ff6600;
    color: #fff;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e65c00;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
}

.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: #111;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.info-content p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form h2, .contact-map h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff6600;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after, .contact-map h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6600;
}

.contact-form p {
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #fff;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #ff6600;
    outline: none;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
    background-color: #1a1a1a;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: auto;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff8533, #ff6600);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.map-container {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 80px;
    background-color: #000;
    color: #fff;
    border-top: 1px solid #222;
}

.faq-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ff8533);
}

.faq-container {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    background-color: #111;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 102, 0, 0.2);
    transform: translateY(-3px);
}

.faq-question {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(to right, rgba(255, 102, 0, 0.1), rgba(0, 0, 0, 0));
}

.faq-question h3 {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}

.faq-icon {
    color: #ff6600;
    transition: transform 0.3s;
    width: 24px;
    height: 24px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #aaa;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    background: rgba(255, 102, 0, 0.2);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #bbb;
    line-height: 1.7;
}

/* Responsive styles for Contact Page */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles for new pages */
@media (max-width: 992px) {
    .about-grid, .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Shopping Cart Styles */
.cart-section {
    padding: 50px 0;
}

.cart-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Empty Cart */
.cart-empty {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.empty-cart-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cart-empty p {
    color: #777;
    margin-bottom: 30px;
}

/* Cart Header */
.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 0.5fr;
    background-color: #f5f5f5;
    padding: 15px;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
}

.cart-column {
    padding: 0 10px;
}

/* Cart Items */
.cart-items {
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr 0.5fr;
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

/* Cart Product */
.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product .product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.cart-product .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.cart-product .product-details h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-product .product-category {
    color: #777;
    font-size: 14px;
}

/* Cart Price */
.cart-price {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}

/* Cart Quantity */
.cart-quantity {
    display: flex;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: #f5f5f5;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    padding: 5px 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* Cart Subtotal */
.cart-subtotal {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #000;
}

/* Cart Remove */
.cart-remove {
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff6600;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

.remove-btn:hover {
    color: #cc5200;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.coupon {
    display: flex;
    gap: 10px;
}

.coupon input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
}

.apply-coupon, .update-cart {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-coupon:hover, .update-cart:hover {
    background-color: #000;
}

/* Cart Summary */
.cart-summary {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
}

.cart-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    margin-top: 10px;
    border-bottom: none;
}

.checkout-button {
    display: block;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    margin: 20px 0 10px;
    transition: background-color 0.3s;
}

.checkout-button:hover {
    background-color: #cc5200;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #333;
    padding: 10px;
    margin-top: 10px;
}

/* Related Products */
.related-products {
    padding: 50px 0;
    background-color: #000;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Responsive Cart Styles */
@media (max-width: 992px) {
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
    }
    
    .cart-product {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    
    .cart-price, .cart-quantity, .cart-subtotal {
        display: grid;
        grid-template-columns: 100px 1fr;
        align-items: center;
        padding: 5px 0;
    }
    
    .cart-price:before {
        content: 'Price:';
        font-weight: 600;
    }
    
    .cart-quantity:before {
        content: 'Quantity:';
        font-weight: 600;
    }
    
    .cart-subtotal:before {
        content: 'Subtotal:';
        font-weight: 600;
    }
    
    .cart-remove {
        position: absolute;
        top: 20px;
        right: 10px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .coupon {
        width: 100%;
    }
    
    .coupon input {
        flex-grow: 1;
    }
    
    .update-cart {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cart-section {
        padding: 30px 0;
    }
    
    .cart-container {
        gap: 20px;
    }
    
    .cart-product {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-product .product-image {
        width: 100%;
        height: 200px;
        margin-bottom: 10px;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
    
    .quantity-input {
        flex-grow: 1;
    }
    
    .coupon {
        flex-direction: column;
    }
    
    .coupon input {
        width: 100%;
    }
    
    .products-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .accordion-header {
        font-size: 18px;
        padding: 15px 20px;
    }
    
    .rashi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Category Pages Responsive */
    .category-header {
        padding: 50px 0;
    }
    
    .category-header-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .category-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .category-header-text h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .category-header-text p {
        font-size: 16px;
        text-align: center;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-sort {
        width: 100%;
    }
    
    .products-sort select {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .contact-info-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .rashi-grid {
        grid-template-columns: 1fr;
    }
    
    /* Category Pages Mobile */
    .category-header {
        padding: 40px 0;
    }
    
    .category-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .category-header-text h1 {
        font-size: 28px;
    }
    
    .category-header-text p {
        font-size: 14px;
    }
    
    .products-main {
        padding: 20px;
    }
    
    .products-sidebar {
        padding: 20px;
    }
    
    .filter-group h3 {
        font-size: 16px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 8px 5px 6px 5px;
    z-index: 9999;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
    display: none;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        gap: 2px;
    }
    
    body {
        padding-bottom: 65px !important;
        overflow-x: hidden !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888888;
    text-decoration: none;
    padding: 6px 4px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 60px;
    max-width: 75px;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 22px;
    margin-bottom: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-nav .nav-item span {
    font-size: 9px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mobile-bottom-nav .nav-item.active {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.08);
}

.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav .nav-item:not(.active):active {
    transform: scale(0.95);
}

.mobile-bottom-nav .nav-item:hover {
    color: #ff6600;
}


/* Ensure mobile nav shows on all pages including about */
body {
    position: relative;
}

@media (max-width: 768px) {
    body {
        min-height: 100vh;
    }
}



/* Mobile responsive for astrologer and nakshatra sections */
@media (max-width: 768px) {
    .astrologer-section,
    .nakshatra-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .astrologer-image img,
    .nakshatra-image img {
        width: 180px;
        height: 180px;
    }
    
    .astrologer-details h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .nakshatra-details h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .nakshatra-details h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .nakshatra-details .tagline {
        font-size: 1rem;
        text-align: center;
    }
    
    .astrologer-titles li,
    .nakshatra-services li {
        font-size: 0.95rem;
    }
}


@media (max-width: 768px) {
    .about-content .container {
        padding: 0 10px !important;
    }
    
    .astrologer-section,
    .nakshatra-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        border-radius: 10px !important;
    }
}


@media (max-width: 768px) {
    .about-content .container {
        padding: 0 10px !important;
    }
    
    .astrologer-section,
    .nakshatra-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    
    .team-card {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .team-card:nth-child(2),
    .team-card:nth-child(3) {
        margin-left: auto !important;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .footer-logo img {
        margin: 0 auto !important;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-col p {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        border-radius: 8px !important;
        padding: 12px !important;
    }
    
    .hamburger {
        width: 28px !important;
        height: 24px !important;
    }
    
    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
    }
    
    .header-content {
        position: relative !important;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        width: 60px !important;
        height: 60px !important;
        background-color: rgba(0, 0, 0, 0.6) !important;
        border-radius: 10px !important;
        padding: 15px !important;
    }
    
    .hamburger {
        width: 32px !important;
        height: 28px !important;
    }
    
    .hamburger span {
        height: 3px !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative !important;
    }
    
    .mobile-toggle {
        position: absolute !important;
        top: 50% !important;
        left: 10px !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        background-color: rgba(0, 0, 0, 0.8) !important;
        border-radius: 8px !important;
        padding: 12px !important;
        z-index: 100 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hamburger {
        width: 26px !important;
        height: 22px !important;
    }
    
    .hamburger span {
        height: 3px !important;
        background-color: #ff6600 !important;
    }
    
    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 50 !important;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* Force hide mobile menu toggle */
@media (max-width: 768px) {
    .mobile-toggle,
    .hamburger,
    div.mobile-toggle,
    div.hamburger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 768px) {
    .video-overlay {
        position: relative !important;
        top: auto !important;
        transform: none !important;
    }
    
    .video-content {
        position: absolute !important;
        bottom: 80px !important;
        top: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
    }
    
    .video-container {
        position: relative !important;
        min-height: 60vh !important;
    }
}

@media (max-width: 768px) {
    .video-content {
        position: static !important;
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        padding: 20px !important;
        margin-top: -50px !important;
    }
    
    .video-overlay {
        position: static !important;
        background: transparent !important;
    }
    
    .video-container video {
        max-height: 40vh !important;
        object-fit: cover !important;
    }
}

@media (max-width: 768px) {
    .video-content .cta-button {
        display: none !important;
    }
}

/* Update team grid for 4 members */
.team-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile view - 1 column for team members */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

/* Center align team and benefits grids on desktop */
.team-grid {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.benefits-grid {
    max-width: 1200px !important;
}

@media (min-width: 1200px) {
    .team-grid {
        gap: 30px !important;
    }
}

/* Fix team grid to fit 4 boxes properly */
.team-grid {
    max-width: 1300px !important;
    gap: 25px !important;
}

.team-card {
    max-width: 300px !important;
}

@media (min-width: 1400px) {
    .team-grid {
        max-width: 1400px !important;
        gap: 35px !important;
    }
}

/* Make team boxes smaller */
.team-card {
    padding: 30px 20px !important;
    max-width: 250px !important;
    width: 100% !important;
}

.team-image img {
    width: 120px !important;
    height: 120px !important;
}

.team-card h3 {
    font-size: 1.1rem !important;
}

.team-role {
    font-size: 0.9rem !important;
}

.team-grid {
    gap: 20px !important;
}

/* Add gap between team boxes */
.team-grid {
    gap: 30px !important;
    justify-content: center !important;
}

/* Force gap between team boxes - override all */
.team-section .team-grid {
    gap: 40px !important;
    column-gap: 40px !important;
    row-gap: 40px !important;
}

/* Increase gap between team boxes */
.team-section .team-grid {
    gap: 60px !important;
    column-gap: 60px !important;
    row-gap: 60px !important;
}

/* Fit 4 team boxes within container with proper spacing */
.team-section .team-grid {
    gap: 30px !important;
    column-gap: 30px !important;
    row-gap: 30px !important;
    padding: 40px !important;
    max-width: 100% !important;
}

.team-section .team-card {
    max-width: 220px !important;
    flex: 1 1 220px !important;
}

.team-section {
    padding: 0 20px !important;
}

/* Align team grid to left */
.team-section .team-grid {
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

/* Move second team box (Mahesh Thakral) to the left */
.team-grid .team-card:nth-child(2) {
    margin-left: -20px !important;
}

/* Move third team box (Rahul Kumar) to the left */
.team-grid .team-card:nth-child(3) {
    margin-left: -20px !important;
}

/* Fix mobile view - center align and remove negative margins */
@media (max-width: 768px) {
    .team-grid .team-card:nth-child(2),
    .team-grid .team-card:nth-child(3) {
        margin-left: 0 !important;
    }
    
    .team-grid {
        justify-content: center !important;
        padding: 20px 10px !important;
    }
    
    .team-card {
        margin: 0 auto !important;
    }
}

/* Better mobile alignment for team boxes */
@media (max-width: 768px) {
    .team-section .team-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
    }
    
    .team-section .team-card {
        max-width: 280px !important;
        width: 90% !important;
        margin: 0 !important;
    }
}

/* Fix team image to be perfectly round in mobile */
@media (max-width: 768px) {
    .team-section .team-image img {
        width: 150px !important;
        height: 150px !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 50% !important;
    }
}

/* Force team images to be square and round */
@media (max-width: 768px) {
    .team-image {
        width: 150px !important;
        height: 150px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .team-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
    }
}

/* Make team images square instead of round in mobile */
@media (max-width: 768px) {
    .team-image {
        border-radius: 15px !important;
    }
    
    .team-image img {
        border-radius: 15px !important;
    }
}

/* Make all team images square shape */
.team-image {
    border-radius: 15px !important;
    overflow: hidden !important;
}

.team-image img {
    border-radius: 15px !important;
}

/* Force square shape for team images - override all */
.team-section .team-image,
.team-section .team-image img {
    border-radius: 15px !important;
}

.team-card .team-image,
.team-card .team-image img {
    border-radius: 15px !important;
}

/* Hide text overlays on hero images in mobile view */
@media (max-width: 768px) {
    .hero-content,
    .video-content {
        display: none !important;
    }
}

/* Fix team images to fit properly in square shape */
.team-image {
    width: 150px !important;
    height: 150px !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.team-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px !important;
}

/* Proper fit for team images - adjust object position */
.team-card .team-image {
    width: 200px !important;
    height: 200px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin: 0 auto 20px !important;
    background: #1a1a1a !important;
}

.team-card .team-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    .team-card .team-image {
        width: 180px !important;
        height: 180px !important;
        border-radius: 20px !important;
    }
    
    .team-card .team-image img {
        object-fit: cover !important;
    }
}

/* Force all team images to use cover - final override */
.team-section .team-image img,
.team-card .team-image img,
.team-grid .team-image img {
    object-fit: cover !important;
    object-position: center !important;
}

/* Siddha Mala Section */
.siddha-mala-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.siddha-mala-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.siddha-mala-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.siddha-mala-images .main-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ff6600;
    background: #000;
}

.siddha-mala-images .main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail-images img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    border: 2px solid #ff6600;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
}

.thumbnail-images img:hover {
    border-color: #ff8833;
    transform: scale(1.05);
}

.siddha-mala-details {
    color: #ffffff;
}

.siddha-mala-details h3 {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.siddha-mala-details h4 {
    font-size: 1.5rem;
    color: #ff6600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.siddha-mala-details h5 {
    font-size: 1.2rem;
    color: #ff6600;
    margin-bottom: 10px;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 2.4rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 28px;
    padding: 10px 26px;
    border-radius: 999px;
    background: linear-gradient(130deg, #ff8a00, #ff3d00);
    box-shadow: 0 18px 38px rgba(255, 102, 0, 0.35);
}

.price-tag::before {
    content: '\f155';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
}

.description {
    line-height: 1.8;
    font-size: 1rem;
}

.description p {
    margin-bottom: 15px;
    color: #cccccc;
}

.benefits-list {
    margin-top: 20px;
}

.benefit-item {
    background: linear-gradient(140deg, rgba(255, 102, 0, 0.12), rgba(12, 12, 12, 0.95));
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 18px;
    border-left: 4px solid rgba(255, 102, 0, 0.75);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.benefit-item h5 {
    margin-bottom: 10px;
}

.benefit-item p {
    margin-bottom: 0;
    color: #dddddd;
}

.buy-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600, #ff8833);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

/* Mobile Responsive for Siddha Mala */
@media (max-width: 768px) {
    .siddha-mala-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .siddha-mala-images .main-image {
        height: 350px;
    }
    
    .thumbnail-images img {
        width: 80px;
        height: 80px;
    }
    
    .siddha-mala-details h3 {
        font-size: 1.5rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
}

/* Accordion Styles for Siddha Mala */
.accordion-item {
    margin: 20px 0;
    border: 2px solid #ff6600;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background: linear-gradient(135deg, #ff6600, #ff8833);
    color: #ffffff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    margin: 0;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #ff8833, #ffaa55);
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 102, 0, 0.03);
}

.accordion-content.active {
    max-height: 2000px;
    padding: 20px;
}

.accordion-content p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .accordion-header {
        font-size: 1.2rem;
        padding: 12px 15px;
    }
}

/* Fix accordion header text visibility */
.accordion-header {
    color: #ffffff !important;
}

.accordion-item h4 {
    color: #ffffff !important;
}

/* Siddha Mala Image Animations */
.siddha-mala-images .main-image {
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
    transition: all 0.5s ease;
}

.siddha-mala-images .main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 60px rgba(255, 102, 0, 0.5);
}

.siddha-mala-images .main-image img {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse animation for main image border */
.siddha-mala-images .main-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 15px;
    border: 3px solid #ff6600;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

/* Thumbnail hover effects */
.thumbnail-images img {
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.thumbnail-images img:hover {
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
    border-width: 3px;
}

/* Active thumbnail highlight */
.thumbnail-images img.active {
    border-color: #ffaa00;
    border-width: 4px;
    box-shadow: 0 8px 30px rgba(255, 170, 0, 0.6);
}

/* Enhanced Image Transition Effects */
.siddha-mala-images .main-image img {
    animation: fadeIn 0.8s ease, float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Glowing effect on main image */
.siddha-mala-images .main-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Shine effect on hover */
.siddha-mala-images .main-image {
    overflow: hidden;
}

.siddha-mala-images .main-image::before {
    z-index: 1;
}

/* Thumbnail bounce effect */
.thumbnail-images img {
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.thumbnail-images img:nth-child(1) {
    animation-delay: 0.1s;
}

.thumbnail-images img:nth-child(2) {
    animation-delay: 0.2s;
}

.thumbnail-images img:nth-child(3) {
    animation-delay: 0.3s;
}

/* Buy Now Button Enhanced Animation */
.buy-now-btn {
    position: relative;
    overflow: hidden;
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
    }
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.buy-now-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Price Tag Animation */
.price-tag {
    animation: price-flash 2s ease-in-out infinite;
}

@keyframes price-flash {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.8), 0 0 30px rgba(0, 255, 0, 0.6);
    }
}

/* Section Title Animation */
.siddha-mala-section .section-title {
    animation: slideInFromLeft 1s ease;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Details Content Fade In */
.siddha-mala-details > * {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.siddha-mala-details > *:nth-child(1) { animation-delay: 0.1s; }
.siddha-mala-details > *:nth-child(2) { animation-delay: 0.2s; }
.siddha-mala-details > *:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
