
/* CSS Variables for Consistent Theme */
:root {
    --primary-color: #d4af37;
    --secondary-color: #8b4513;
    --accent-color: #e8b4cb;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --text-muted: #9b9b9b;
    --background-light: #fefefe;
    --background-cream: #faf9f7;
    --background-muted: #f5f5f5;
    --border-light: #e0e0e0;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-dark: rgba(0,0,0,0.25);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: var(--background-light);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: var(--background-muted);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px var(--shadow-light);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-light);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-link {
    background: none;
    color: var(--primary-color);
    border: none;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Sections */
section {
    padding: 4rem 0;
}

.featured-categories,
.trending,
.quick-guide,
.resources {
    background: var(--background-light);
}

.featured-categories:nth-child(even),
.trending:nth-child(even) {
    background: var(--background-cream);
}

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

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-light);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Trending Section */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.trend-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow-light);
    transition: var(--transition);
}

.trend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.trend-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.trend-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Quick Guide Steps */
.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow-light);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Resources Section */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--background-muted);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Layout */
.main-content {
    padding: 3rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px var(--shadow-light);
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.content-section:last-child {
    border-bottom: none;
}

/* Table of Contents */
.toc-container {
    background: var(--background-cream);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.toc {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}

.toc a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.comparison-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.comparison-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.comparison-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.pros, .cons {
    padding: 1rem;
    border-radius: 6px;
}

.pros {
    background: rgba(34, 197, 94, 0.1);
    border-left: 3px solid #22c55e;
}

.cons {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
}

.pros h4, .cons h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* Affiliate Sections */
.affiliate-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: white;
}

.affiliate-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.product-recommendations {
    display: grid;
    gap: 0.75rem;
}

.product-rec {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.affiliate-link:hover {
    border-bottom-color: white;
    color: white;
}

/* Ad Containers */
.ad-container {
    margin: 3rem 0;
    text-align: center;
}

.ad-placeholder {
    background: var(--background-muted);
    border: 2px dashed var(--border-light);
    padding: 2rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-style: italic;
}

.sidebar-ad {
    margin-bottom: 2rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.sidebar-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.sidebar-links a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Popular Products */
.popular-products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-cream);
    border-radius: 6px;
    transition: var(--transition);
}

.product-item:hover {
    background: var(--background-muted);
}

.product-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.product-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-info a {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.product-info a:hover {
    text-decoration: underline;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Design Ideas Page Specific Styles */
.styles-gallery {
    margin-bottom: 4rem;
}

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

.style-showcase {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.style-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.style-showcase img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.style-info {
    padding: 1.5rem;
}

.style-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.style-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.style-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Color Palettes */
.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.palette-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.palette-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.color-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.palette-card h3 {
    padding: 1rem 1.5rem 0;
    margin-bottom: 0.5rem;
}

.color-swatches {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.palette-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.color-details {
    list-style: none;
    padding: 1rem 1.5rem 1.5rem;
    margin: 0;
    background: var(--background-cream);
}

.color-details li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Font Showcase */
.font-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.font-example {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow-light);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.font-example:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.font-preview {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.font-preview.classic {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.font-preview.script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.font-preview.modern {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.font-preview.decorative {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-style: italic;
}

.font-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.font-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.font-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Occasion Tabs */
.occasion-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    background: var(--background-muted);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.design-idea {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.design-idea:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.design-idea img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.design-idea h3 {
    padding: 1rem 1.5rem 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.design-idea p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.design-specs {
    padding: 1rem 1.5rem 1.5rem;
    background: var(--background-cream);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.design-specs span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Sidebar Enhancements for Design Page */
.color-inspiration {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.color-combo-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--background-cream);
    border-radius: 6px;
    transition: var(--transition);
}

.color-combo-small:hover {
    background: var(--background-muted);
}

.color-dots {
    display: flex;
    gap: 0.25rem;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px var(--shadow-light);
}

.color-combo-small span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Color Utilities */
.gold { background-color: #FFD700; }
.navy { background-color: #1e3a5f; }
.rose-gold { background-color: #E8B4CB; }
.silver { background-color: #C0C0C0; }

/* Shopping Guide Styles */
.shopping-guide {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    color: white;
}

.shopping-guide h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.shopping-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.shop-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.shop-step h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.shop-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.affiliate-shopping {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate-shopping h3 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.shop-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.shop-link {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.shop-link h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.shop-link .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.shop-link .btn:hover {
    background: var(--background-cream);
    transform: translateY(-2px);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow-medium);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left-color: #22c55e;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
    margin-left: 1rem;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* Form Error States */
input.error, textarea.error, select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-medium);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Loading States */
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Additional interactive elements styling */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Responsive Styles will be in responsive.css */
