:root {
    --primary: #4a0c6b;
    --secondary: #8a2be2;
    --accent: #ffcc33;
    --dark: #2f1c4a;
    --light: #f9f4ff;
    --primary-color: #7b3f9d;
    --accent-color: #e6b3ff;
    --discount-color: #e63946;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #2ecc71;
    --secondary-color: #ff0080;
    --text-color: #333;
    --light-bg: #f8f5ff;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
/*    background: linear-gradient(135deg, #f9f4ff 0%, #e6b3ff 100%);*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f4f4f4;
}

.navbar {
    background-color: #fff;
    z-index: 1000;
}
.navbar a{
   color: var(--primary);
}
.navbar-brand span{
    font-weight: 600;
    margin-left: 10px;
    vertical-align: middle;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    color: transparent;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--primary);
    font-weight: 600;
}
.navbar-brand:focus, .navbar-brand:hover{
    color: var(--primary);
}
.nav-link:focus, .nav-link:hover {
    color: var(--primary);
    font-weight: 600;
}
.hero {
    background: linear-gradient(rgba(26, 17, 47, 0.85), rgba(26, 17, 47, 0.85)), 
                url('/api/placeholder/1200/600') center/cover no-repeat;
    min-height: 80vh;
    color: white;
}

.report-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    margin: 10px;
}

.card-title{
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.zodiac-icon {
    height: 80px;
    width: 80px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 2rem;
}

.btn-primary {
/*    background-color: var(--primary);*/
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    border-radius: 50px;
}

.btn-primary:hover {
    /*background-color: var(--secondary);
    border-color: var(--secondary);*/
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
}
.btn-outline-dark{
    border-radius: 50px;
}
.btn-outline-light:hover {
    background-color: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.feature-box {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px #e6b3ff;
    height: 100%;
}

.stars {
    color: var(--accent);
}

footer {
    background-color: var(--dark);
    color: white;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

.cosmic-bg {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Slider Styles */
.carousel {
    width: 100%;
    overflow: hidden;
}
#heroCarousel .carousel-item {
    height: 75vh;
    min-height: 500px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: var(--accent);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 20px;
}

/* Overlay for slider images */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Slide animations */
.carousel-item h1, .carousel-item p, .carousel-item .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.carousel-item.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.carousel-item.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.carousel-item.active .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Custom slider nav buttons */
.custom-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
}

.custom-slider-nav button {
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border: none;
    margin: 0 5px;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-slider-nav button.active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 70vh;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    #heroCarousel .carousel-item{
        height: 50vh;
    }
}
.best-seller-badge {
  position: absolute;
  top: 20px;
  right: -38px;
  background: linear-gradient(135deg, #ff9e00, #ff3c00);
  color: white;
  padding: 8px 30px;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 8px rgba(255, 156, 0, 0.6);
  z-index: 10;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.star-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(to bottom, #00ffcc, #00ccff);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 235, 235, 0.5);
  animation: pulse 2s infinite;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.star-badge-text {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.star-badge-value {
  font-size: 18px;
  font-weight: bold;
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: -33px;
  background: linear-gradient(135deg, #7b4cff, #ea38ff);
  color: white;
  padding: 8px 30px;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 8px rgba(174, 76, 255, 0.6);
  z-index: 10;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.discount-circle-container {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.discount-circle-outer {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #00f7ff;
  opacity: 0.4;
  animation: pulse-outer 2s ease-in-out infinite;
}

.discount-circle {
  position: relative;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #00e1ff, #00b3ff);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 225, 255, 0.6);
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  z-index: 6;
}

.discount-amount {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.discount-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 2px;
}
@keyframes pulse-outer {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

.view-more-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.theme-button {
  position: relative;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  border: 1px solid #eee;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.theme-button-mini{
  position: relative;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  border: 1px solid #eee;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 15px var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.theme-button:hover, .theme-button-mini:hover {
  background: var(--secondary);
}

.theme-button:active {
  transform: translateY(0);
  background: var(--secondary);
}

/*.theme-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.theme-button:hover::before {
  left: 100%;
}*/

.button-icon {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Add pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 225, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 225, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 225, 255, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}
/*
#about img{
    box-shadow: 0px 0px 20px var(--secondary);
    background: #321b4d;
}*/

.rotating-image {
    animation: rotateImage 10s linear infinite;
}

@keyframes rotateImage {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.input-group .newseml.invalid{
    background: #fb9292;
    border: 1px solid #ff0404;
}
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
    background-color:var(--primary);
}
a {
    text-decoration: none;
    color: unset;
}
.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9rem;
}
.current-price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.stars {
    color: #ffc107;
    display: flex;
}
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.view-button, .buy-button {
    padding: 0.7rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    flex: 1;
}
.view-button {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.buy-button {
/*    background-color: var(--primary-color);*/
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.accordion-button:focus{
    box-shadow: unset;
}
.accordion-button:not(.collapsed){
    background-color: var(--primary);
    color: #fff;
}
.astro-icon {
    text-align: center;
    font-size: 2em;
    margin: 20px 0;
    color: #5d4e8c;
}
@media (max-width: 600px) {
    .astro-icon {
        font-size: 0.8em;
    }
}
.navbar .logo{
    max-height: 30px;
    width: auto;
}
footer .logo{
    max-height: 50px;
    width: auto;
}
.navbar-toggler{
/*    background-color: var(--primary-color);*/
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
.banner {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://zodiacinsight.live/assets/images/4107555_2144486-min.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
}
.banner h1 {
    margin: 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.position-relative img{
    max-height: 354px;
}
.testimonial-card p{
    font-style: italic;
}