* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(245, 20%, 8%);
    --foreground: hsl(280, 15%, 92%);
    --card: hsl(245, 15%, 12%);
    --card-foreground: hsl(280, 15%, 92%);
    --primary: hsl(270, 85%, 65%);
    --primary-foreground: hsl(245, 20%, 8%);
    --secondary: hsl(260, 25%, 20%);
    --secondary-foreground: hsl(280, 15%, 92%);
    --muted: hsl(260, 15%, 18%);
    --muted-foreground: hsl(280, 8%, 65%);
    --accent: hsl(45, 95%, 70%);
    --accent-foreground: hsl(245, 20%, 8%);
    --border: hsl(260, 15%, 25%);
    --input: hsl(260, 15%, 18%);
    --gradient-cosmic: linear-gradient(135deg, hsl(270, 85%, 65%), hsl(260, 75%, 45%), hsl(245, 65%, 25%));
    --gradient-mystical: linear-gradient(180deg, hsl(245, 20%, 8%), hsl(260, 25%, 15%));
    --glow-primary: 0 0 30px hsla(270, 85%, 65%, 0.3);
    --glow-accent: 0 0 20px hsla(45, 95%, 70%, 0.2);
    --star-cursor: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\ <polygon points='12,2 15,9 22,9 16.5,13.5 18.5,21 12,16.8 5.5,21 7.5,13.5 2,9 9,9' fill='%23FFD23F' stroke='%23E1A600'/>\</svg>") 12 12, auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.cosmic-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    text-decoration: none;
}

.cosmic-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {


    .nav-toggle {
        display: flex;
    }
}

/* Add top padding to account for fixed nav */
.hero-section,
.products-hero,
.product-details-section {
    padding-top: 70px;
}

/* Products Page Styles */
.products-hero {
    background: var(--gradient-mystical);
    padding: 7rem 0 4rem;
    text-align: center;
}

.products-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    background: var(--gradient-cosmic);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.products-hero-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem;
    backdrop-filter: blur(10px);
}

.search-icon {
    color: var(--muted-foreground);
    margin-right: 0.75rem;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-size: 1rem;
    outline: none;
}

.search-box input::placeholder {
    color: var(--muted-foreground);
}

.search-clear {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.search-clear:hover {
    color: var(--foreground);
}

.bracelet-products-section {
    padding: 5rem 0;
    background: var(--background);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: var(--star-cursor);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary);
    cursor: var(--star-cursor);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1rem;
}

.product-cta {
    width: 100%;
    background: var(--gradient-cosmic);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.no-results {
    text-align: center;
    padding: 4rem 0;
    color: var(--muted-foreground);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

/* Product Details Page */
.product-details-section {
    padding: 8rem 0 4rem;
    background: var(--background);
}

.back-navigation {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--accent);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary);
}

.product-header {
    margin-bottom: 2rem;
}

.product-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.product-header .product-price {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-count {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.product-specifications {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.product-specifications h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.spec-grid {
    display: grid;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.spec-label {
    font-weight: 600;
    color: var(--foreground);
}

.spec-value {
    color: var(--muted-foreground);
    text-align: right;
}

.purchase-section {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: bold;
}

.quantity-controls input {
    width: 3rem;
    padding: 0.5rem;
    text-align: center;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    color: var(--foreground);
}

.add-to-cart-btn,
.buy-now-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.add-to-cart-btn {
    background: var(--gradient-cosmic);
    color: var(--primary-foreground);
}

.buy-now-btn {
    background: var(--accent);
    color: var(--accent-foreground);
}

.add-to-cart-btn:hover,
.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.features-list i {
    color: var(--accent);
    font-size: 0.875rem;
}

.shipping-info {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.shipping-item:last-child {
    margin-bottom: 0;
}

.shipping-item i {
    color: var(--primary);
    width: 1.25rem;
}

.loading-state,
.error-state {
    text-align: center;
    padding: 4rem 0;
    color: var(--muted-foreground);
}

.loading-state i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.error-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.error-state h2 {
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-mystical);
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    color: var(--accent);
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.floating-2 {
    position: absolute;
    top: 40%;
    right: 16%;
    color: var(--primary);
    font-size: 1.25rem;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-3 {
    position: absolute;
    bottom: 32%;
    left: 20%;
    color: var(--accent);
    font-size: 1rem;
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    background: var(--gradient-cosmic);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-cosmic);
    color: var(--primary-foreground);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary), 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
}

.stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-foreground);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--gradient-mystical);
}

.reviews-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.review-slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.review-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--accent);
    font-size: 1rem;
}

.review-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    opacity: 0.7;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 -1rem;
}

.nav-btn {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--primary-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Review Form Section */
.review-form-section {
    padding: 5rem 0;
    background: var(--gradient-mystical);
}

.review-form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars-input {
    display: flex;
    gap: 0.25rem;
}

.stars-input i {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars-input i:hover,
.stars-input i.active {
    color: var(--accent);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.upload-area {
    border: 2px dashed var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--input);
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
}

.upload-area i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.upload-area span {
    display: block;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.upload-area small {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.preview-container {
    position: relative;
    display: inline-block;
}

.preview-container img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--accent);
    color: var(--accent-foreground);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.remove-photo:hover {
    transform: scale(1.1);
}

.char-count {
    text-align: right;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast i {
    font-size: 1.25rem;
}

/* Master Profile Section */
.master-profile-section {
    padding: 6rem 0;
    background: var(--gradient-mystical);
    position: relative;
}

.master-profile-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, hsla(270, 85%, 65%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.master-profile-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
    box-shadow: var(--glow-primary);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.master-profile-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-cosmic);
    opacity: 0.05;
    border-radius: 2rem;
}

.master-avatar {
    position: relative;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-container i {
    font-size: 5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.cosmic-aura {
    position: absolute;
    inset: -10px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.master-info {
    min-width: 0;
}

.master-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    background: var(--gradient-cosmic);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.master-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.master-title i {
    color: var(--accent);
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-cosmic);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--primary-foreground);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-primary);
}

.master-description {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.master-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    font-weight: 500;
}

.achievement i {
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-details {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    min-width: 280px;
}

.contact-header {
    margin-bottom: 1.5rem;
}

.contact-header h4 {
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-header i {
    color: var(--primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    min-width: 1.1rem;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-value:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        flex-direction: column;
        text-align: center;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .slider-nav {
        padding: 0 -2rem;
    }

    .review-form-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }

    .master-profile-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .contact-details {
        min-width: auto;
    }

    .master-achievements {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .floating-elements {
        display: none;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Dark theme enhancement */
@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(245, 20%, 8%);
        --foreground: hsl(280, 15%, 92%);
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0d1b2a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(138,43,226,0.8);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(138,43,226,0);stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="20" r="1" fill="url(%23star)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.5" fill="url(%23star)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="0.8" fill="url(%23star)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: starfield 20s linear infinite;
    opacity: 0.3;
}

.products-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.products-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0aaff 50%, #c77dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.products-hero p {
    font-size: 1.25rem;
    color: #b19cd9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c77dff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9d4edd;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Grid */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a23 0%, #16213e 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(157, 78, 221, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.featured {
    border: 2px solid #c77dff;
    background: rgba(199, 125, 255, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-icon i {
    font-size: 1.5rem;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.product-price {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #c77dff;
    display: block;
}

.product-price .duration {
    color: #b19cd9;
    font-size: 0.9rem;
}

.product-description {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.product-description p {
    color: #b19cd9;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #d8bfd8;
}

.feature i {
    color: #c77dff;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.product-cta {
    width: 100%;
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

/* Premium Package */
.premium-package {
    padding: 100px 0;
    background: linear-gradient(135deg, #240046 0%, #3c096c 100%);
    position: relative;
}

.premium-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #ffd60a;
    border-radius: 30px;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    z-index: 1;
}

.premium-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd60a 0%, #ffb700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.4);
}

.premium-icon i {
    font-size: 2rem;
    color: #240046;
}

.premium-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.premium-header p {
    color: #e0aaff;
    font-size: 1.1rem;
}

.premium-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.premium-features h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.premium-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.premium-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #e0aaff;
}

.premium-feature i {
    color: #ffd60a;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.premium-pricing {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 214, 10, 0.3);
}

.premium-price {
    margin-bottom: 2rem;
}

.original-price {
    color: #b19cd9;
    text-decoration: line-through;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.discounted-price {
    color: #ffd60a;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.discount-label {
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-cta {
    width: 100%;
    background: linear-gradient(135deg, #ffd60a 0%, #ffb700 100%);
    color: #240046;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.premium-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 214, 10, 0.4);
}

.money-back {
    color: #b19cd9;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a23 100%);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(138, 43, 226, 0.1);
}

.faq-question h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #c77dff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #b19cd9;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #240046 0%, #3c096c 50%, #240046 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #b19cd9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(199, 125, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #c77dff;
    border: 2px solid #c77dff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-secondary:hover {
    background: rgba(199, 125, 255, 0.1);
    transform: translateY(-3px);
}

/* Navigation Active State */
.nav-links a.active {
    color: #c77dff;
    background: rgba(199, 125, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* Mobile Responsiveness for Products Page */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .premium-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-feature-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 100px 0 60px;
    }

    .products-hero h1 {
        font-size: 2rem;
    }

    .product-card {
        padding: 1rem;
    }

    .premium-card {
        padding: 1.5rem;
    }

    .premium-header h2 {
        font-size: 2rem;
    }

    .discounted-price {
        font-size: 2.5rem;
    }