/* Peachy's Peptides - Rose Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --rose-gold: #E8B4B8;
    --rose-gold-light: #F5D6D8;
    --rose-gold-dark: #B76E79;
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --pink-bg: #FFF5F5;
    --pink-soft: #FFE4E6;
    --dark: #2D2D2D;
    --dark-soft: #4A4A4A;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(183, 110, 121, 0.15);
    --shadow-hover: 0 8px 30px rgba(183, 110, 121, 0.25);
    --gradient-rose: linear-gradient(135deg, #E8B4B8 0%, #B76E79 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pink-bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-rose);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--rose-gold-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cart-count {
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    background: linear-gradient(135deg, var(--pink-bg) 0%, var(--pink-soft) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--rose-gold-light) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.hero-content h1 span {
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--dark-soft);
    margin-bottom: 2rem;
}

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

.btn-primary {
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--rose-gold-dark);
    border: 2px solid var(--rose-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--rose-gold-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(183, 110, 121, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

/* Products Section */
.products-section {
    padding: 100px 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--dark-soft);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-rose);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Product Filter Tabs */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--pink-soft);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-soft);
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-rose);
    color: var(--white);
}

/* Product Grid */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid .product-card {
    flex: 0 0 280px;
    max-width: 320px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-rose);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.out-of-stock {
    background: var(--dark-soft);
}

.product-badge.moq {
    background: var(--gold);
    color: var(--dark);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image .product-name-display {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-info .details {
    font-size: 0.9rem;
    color: var(--dark-soft);
    margin-bottom: 1rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--dark-soft);
    font-size: 0.9rem;
}

.sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-gold-dark);
}

.add-to-cart {
    width: 100%;
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.add-to-cart:disabled {
    background: var(--dark-soft);
    cursor: not-allowed;
    opacity: 0.6;
}

/* About Section */
.about-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--rose-gold-light) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.features-list li span {
    background: var(--gradient-rose);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--pink-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-soft);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--pink-soft);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-rose);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cart-item-details .price {
    color: var(--rose-gold-dark);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--rose-gold);
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--dark-soft);
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--pink-soft);
    background: var(--pink-bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    opacity: 0.9;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--dark-soft);
}

.empty-cart span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--rose-gold);
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Checkout Page Styles */
.checkout-page {
    padding: 120px 5% 60px;
    min-height: 100vh;
    background: var(--pink-bg);
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--pink-soft);
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--pink-soft);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 1rem;
    color: var(--rose-gold-dark);
}

.payment-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.payment-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-tab {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--rose-gold);
    background: var(--white);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-tab.active {
    background: var(--gradient-rose);
    color: var(--white);
    border-color: transparent;
}

.payment-content {
    display: none;
}

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

.qr-container {
    text-align: center;
    padding: 2rem;
    background: var(--pink-soft);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    background: var(--white);
    padding: 10px;
    border-radius: 10px;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.payment-address {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    word-break: break-all;
    font-size: 0.85rem;
}

.copy-btn {
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 500;
}

.checkout-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--pink-soft);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.submit-order {
    width: 100%;
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-order:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Guide Page Styles */
.guide-page {
    padding: 120px 5% 60px;
    min-height: 100vh;
    background: var(--pink-bg);
}

.guide-container {
    max-width: 900px;
    margin: 0 auto;
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.guide-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.guide-section h2 {
    font-size: 1.5rem;
    color: var(--rose-gold-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-section h2 span {
    background: var(--gradient-rose);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.step-list {
    list-style: none;
}

.step-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--pink-soft);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-list li .step-num {
    background: var(--rose-gold-dark);
    color: var(--white);
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

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

.platform-card {
    background: var(--pink-soft);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.platform-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.platform-card p {
    font-size: 0.9rem;
    color: var(--dark-soft);
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

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

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Notification Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-rose);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 2000;
}

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

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    font-size: 0.85rem;
}

.disclaimer-banner a {
    color: var(--rose-gold);
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-nav-btn {
    background: var(--gradient-rose);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.category-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Category Sections */
.category-section {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--rose-gold-light);
}

.category-letter {
    background: var(--gradient-rose);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.category-title {
    font-size: 1.8rem;
    color: var(--dark);
}

.category-title span {
    color: var(--rose-gold-dark);
    font-weight: 400;
}

/* Payment Method Selector (Guide Page) */
.payment-selector {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.payment-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 3rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.payment-method-btn.bitcoin {
    background: linear-gradient(135deg, #F7931A 0%, #FFAB40 100%);
    color: white;
}

.payment-method-btn.zelle {
    background: linear-gradient(135deg, #6D1ED4 0%, #9B4DFF 100%);
    color: white;
}

.payment-method-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.payment-method-btn .icon {
    font-size: 3rem;
}

.payment-method-btn .label {
    font-size: 1.3rem;
    font-weight: 700;
}

.payment-method-btn .desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Product Reviews */
.product-reviews {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.product-reviews .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

.product-reviews .rating-text {
    font-size: 0.85rem;
    color: var(--dark-soft);
}

/* Peachy Quote Banner */
.peach-quote-banner {
    background: var(--gradient-rose);
    color: var(--white);
    text-align: center;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-family: "Playfair Display", serif;
    font-style: italic;
}

.peach-quote-banner .quote-icon {
    font-size: 1.5rem;
    font-style: normal;
}

.peach-quote-banner .peach-quote {
    animation: fadeQuote 0.5s ease;
}

@keyframes fadeQuote {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ==================== */
/* Product Detail Page  */
/* ==================== */

.breadcrumb {
    padding: 100px 5% 20px;
    font-size: 0.9rem;
    color: var(--dark-soft);
}

.breadcrumb a {
    color: var(--rose-gold-dark);
    text-decoration: none;
}

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

.breadcrumb span {
    margin: 0 0.5rem;
}

.product-detail-page {
    padding: 0 5% 60px;
    background: var(--pink-bg);
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.product-detail-image {
    position: relative;
}

.product-image-main {
    height: 400px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-name-large {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 4px 4px 20px rgba(0,0,0,0.2);
}

.product-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-rose);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.product-image-badge.out-of-stock {
    background: var(--dark-soft);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-detail-header h1 {
    font-size: 2.2rem;
    color: var(--dark);
    line-height: 1.2;
}

.wishlist-btn {
    background: none;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: var(--rose-gold);
    color: var(--white);
}

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

.product-rating-row .stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.product-rating-row .rating-value {
    font-weight: 600;
    color: var(--dark);
}

.product-rating-row .review-count {
    color: var(--dark-soft);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.sale-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-gold-dark);
}

.stock-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-description {
    color: var(--dark-soft);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--pink-soft);
    border-radius: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-soft);
}

.feature-icon {
    font-size: 1.2rem;
}

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

.quantity-section label {
    font-weight: 600;
    color: var(--dark);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--rose-gold);
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.3s ease;
    color: var(--dark);
}

.qty-btn:hover {
    background: var(--pink-soft);
}

.quantity-selector input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--white);
}

.moq-notice {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-add-cart {
    flex: 2;
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-add-cart:disabled {
    background: var(--dark-soft);
    cursor: not-allowed;
}

.btn-buy-now {
    flex: 1;
    background: var(--white);
    color: var(--rose-gold-dark);
    border: 2px solid var(--rose-gold);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: var(--pink-soft);
}

/* Accordions */
.product-accordions {
    border-top: 1px solid var(--pink-soft);
    padding-top: 1rem;
}

.accordion {
    border-bottom: 1px solid var(--pink-soft);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.accordion-header:hover {
    color: var(--rose-gold-dark);
}

.accordion-icon {
    font-size: 1.3rem;
    color: var(--rose-gold-dark);
    transition: transform 0.3s ease;
}

.accordion.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion.active .accordion-content {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 0.5rem 0;
    color: var(--dark-soft);
}

.detail-list li strong {
    color: var(--dark);
}

/* Reviews Section */
.reviews-section {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-header h2 {
    font-size: 1.8rem;
    color: var(--dark);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.big-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rose-gold-dark);
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
}

.stars-large {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: var(--pink-bg);
    padding: 1.5rem;
    border-radius: 15px;
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
}

.verified-badge {
    font-size: 0.8rem;
    color: #155724;
    background: #d4edda;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-date {
    color: var(--dark-soft);
    font-size: 0.85rem;
}

.review-text {
    color: var(--dark-soft);
    line-height: 1.6;
}

/* Related Products */
.related-products {
    max-width: 1200px;
    margin: 40px auto;
}

.related-products h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Product Card Link Wrapper */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card.clickable {
    cursor: pointer;
}

.product-card.clickable:hover .product-image {
    transform: scale(1.02);
}

.product-card .product-image {
    transition: transform 0.3s ease;
}

/* Form Select Styling */
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--pink-soft);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--rose-gold);
}

/* Responsive Product Detail */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .product-image-main {
        height: 300px;
    }

    .product-name-large {
        font-size: 5rem;
    }

    .product-detail-header h1 {
        font-size: 1.8rem;
    }

    .sale-price-large {
        font-size: 2rem;
    }

    .product-features {
        flex-direction: column;
        gap: 1rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
}


/* ===== CONFIRMATION PAGE STYLES ===== */
.confirmation-page {
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF0F5 100%);
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.confirmation-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.confirmation-header p {
    color: #666;
    font-size: 1.1rem;
}

.order-number-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 2px dashed #B76E79;
}

.order-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-id {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #B76E79;
    font-family: monospace;
    margin-bottom: 5px;
}

.order-date {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.receipt-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.receipt-header h2 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.print-btn {
    background: #f5f5f5;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.print-btn:hover {
    background: #e0e0e0;
}

.receipt-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.receipt-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.receipt-section h3 {
    font-size: 1rem;
    color: #B76E79;
    margin-bottom: 15px;
    font-weight: 600;
}

.receipt-items {
    margin-bottom: 20px;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.receipt-item:last-child {
    border-bottom: none;
}

.receipt-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-name {
    font-weight: 500;
    color: #333;
}

.item-qty {
    font-size: 0.85rem;
    color: #888;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.receipt-totals {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #666;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0;
    margin-top: 8px;
    border-top: 2px solid #e0e0e0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.payment-info-box {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF0F5 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #f0d0d5;
}

.payment-method-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.payment-method-badge.btc {
    background: #f7931a;
    color: white;
}

.payment-method-badge.zelle {
    background: #6d1ed4;
    color: white;
}

.payment-amount {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.payment-address-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.payment-address {
    display: block;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.copy-btn-small {
    background: #B76E79;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.copy-btn-small:hover {
    background: #a05d67;
}

.memo-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
    background: #fff3cd;
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid #D4AF37;
}

.shipping-info p {
    margin: 5px 0;
    color: #555;
}

.next-steps-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.next-steps-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.steps-list li:last-child {
    border-bottom: none;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #B76E79, #D4AF37);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: #333;
    margin-bottom: 4px;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.notice-card {
    background: #fff3cd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #D4AF37;
}

.notice-card h4 {
    margin: 0 0 8px;
    color: #856404;
}

.notice-card p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirmation-actions .btn-primary,
.confirmation-actions .btn-secondary {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.confirmation-actions .btn-primary {
    background: linear-gradient(135deg, #B76E79, #D4AF37);
    color: white;
}

.confirmation-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.confirmation-actions .btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.confirmation-actions .btn-secondary:hover {
    background: #f5f5f5;
}

/* Print styles */
@media print {
    .navbar, .disclaimer-banner, .footer,
    .next-steps-card, .notice-card, .confirmation-actions,
    .print-btn {
        display: none !important;
    }

    .confirmation-page {
        padding: 0;
        background: white !important;
    }

    .receipt-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .order-number-box {
        box-shadow: none;
    }
}

@media (max-width: 600px) {
    .confirmation-actions {
        flex-direction: column;
    }

    .receipt-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .order-id {
        font-size: 1.5rem;
    }
}


/* ===== CHECKOUT ORDER TOTALS ===== */
.order-totals-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #666;
}

.free-shipping-note {
    padding: 4px 0;
}



/* ===== SPEECH BUBBLE ===== */
.hero-image {
    position: relative;
}

.speech-bubble {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 3px solid #B76E79;
    border-radius: 20px;
    padding: 12px 20px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
    z-index: 10;
    animation: bubble-bounce 2s ease-in-out infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 18px 18px 0;
    border-style: solid;
    border-color: #B76E79 transparent transparent;
}

.bubble-text {
    font-weight: 600;
    color: #B76E79;
    font-size: 1rem;
    text-align: center;
    display: block;
}

@keyframes bubble-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .speech-bubble {
        top: -20px;
        max-width: 200px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}


/* ===== PAYMENT TIMER STYLES ===== */
.payment-header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
}

.payment-header .order-number-box {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.timer-box {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.timer-bar {
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.timer-progress {
    height: 100%;
    background: linear-gradient(90deg, #68D391, #48BB78);
    border-radius: 3px;
    transition: width 1s linear;
}

.timer-box.urgent .timer-display {
    color: #FC8181;
    animation: pulse 1s ease-in-out infinite;
}

.timer-box.urgent .timer-progress {
    background: linear-gradient(90deg, #FC8181, #F56565);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.timer-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

/* ===== PAYMENT STEPS ===== */
.payment-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 25px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payment-step.active {
    background: #B76E79;
    color: white;
    opacity: 1;
}

.payment-step.completed {
    background: #48BB78;
    color: white;
    opacity: 1;
}

.step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-connector {
    width: 40px;
    height: 3px;
    background: #ddd;
    border-radius: 2px;
}

/* ===== TRANSACTION FORM ===== */
.tx-section {
    background: linear-gradient(135deg, #fefce8, #fef9c3);
    border: 2px solid #eab308;
    border-radius: 12px;
    margin-top: 20px;
}

.tx-instructions {
    color: #713f12;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tx-form {
    margin-top: 15px;
}

.tx-input-group {
    margin-bottom: 15px;
}

.tx-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #713f12;
}

.tx-input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #d4d4d4;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    transition: border-color 0.3s ease;
}

.tx-input-group input:focus {
    outline: none;
    border-color: #B76E79;
}

.tx-hint {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
}

.btn-submit-tx {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #48BB78, #38A169);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-tx:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.btn-submit-tx:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

/* ===== CONFIRMED STATE ===== */
.confirmed-card {
    text-align: center;
}

.confirmed-header {
    padding: 30px;
    background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
    border-radius: 12px 12px 0 0;
    margin: -25px -25px 25px -25px;
}

.confirmed-icon {
    width: 80px;
    height: 80px;
    background: #48BB78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.confirmed-header h2 {
    color: #22543d;
    margin-bottom: 10px;
}

.confirmed-header p {
    color: #276749;
}

.confirmed-details {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.confirmed-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.confirmed-row:last-child {
    border-bottom: none;
}

.confirmed-row code {
    font-size: 0.85rem;
    background: #edf2f7;
    padding: 5px 10px;
    border-radius: 4px;
    word-break: break-all;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

/* ===== EXPIRED STATE ===== */
.expired-card {
    text-align: center;
}

.expired-header {
    padding: 40px;
}

.expired-icon {
    width: 80px;
    height: 80px;
    background: #f56565;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.expired-header h2 {
    color: #c53030;
    margin-bottom: 10px;
}

.expired-header p {
    color: #666;
}

/* ===== PAYMENT SECTION HIGHLIGHT ===== */
.payment-section {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
}

.total-row.highlight {
    background: #B76E79;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.total-row.highlight span {
    font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .payment-header {
        flex-direction: column;
    }

    .timer-display {
        font-size: 2.5rem;
    }

    .payment-steps {
        gap: 5px;
    }

    .payment-step {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .payment-step span:last-child {
        display: none;
    }

    .step-connector {
        width: 20px;
    }

    .confirmed-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}


/* ===== VALIDATION STATUS STYLES ===== */
.validation-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 500;
}

.validation-status.checking {
    background: #e0f2fe;
    border: 2px solid #0ea5e9;
    color: #0369a1;
}

.validation-status.verified {
    background: #dcfce7;
    border: 2px solid #22c55e;
    color: #166534;
}

.validation-status.failed {
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #b91c1c;
}

.validation-status.pending {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    color: #92400e;
}

.validation-status .status-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.validation-status .status-message {
    flex: 1;
}

/* Spinner animation */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #0ea5e9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Input error state */
.tx-input-group input.error {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Button states */
.btn-submit-tx .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-width: 2px;
    border-top-color: white;
    vertical-align: middle;
    margin-right: 8px;
}

/* Status badge variants */
.status-badge.verified {
    background: #dcfce7;
    color: #166534;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.failed {
    background: #fee2e2;
    color: #b91c1c;
}

/* Blockchain link */
.tx-link {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
}

.tx-link a {
    color: #0ea5e9;
    text-decoration: none;
}

.tx-link a:hover {
    text-decoration: underline;
}


/* ===== SOLD OUT ITEMS FADE ===== */
.product-card:has(.product-badge.out-of-stock) {
    opacity: 0.6;
    filter: grayscale(30%);
}

.product-card:has(.product-badge.out-of-stock):hover {
    opacity: 0.8;
    filter: grayscale(10%);
}

/* Fallback for browsers without :has() support */
.product-card.sold-out {
    opacity: 0.6;
    filter: grayscale(30%);
}

.product-card.sold-out:hover {
    opacity: 0.8;
    filter: grayscale(10%);
}


/* ===== TIME ESTIMATE BADGES ===== */
.time-estimate {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}


/* ===== SOLD OUT BUTTON STYLES ===== */
.btn-add-cart:disabled,
.add-to-cart:disabled {
    background: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    pointer-events: none;
}

.btn-add-cart:disabled:hover,
.add-to-cart:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Out of stock message on product page */
.out-of-stock-message {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
    color: #b91c1c;
    font-weight: 500;
}

.out-of-stock-message strong {
    display: block;
    margin-bottom: 5px;
}


/* ===== PROMO BANNER (DISMISSABLE) ===== */
.promo-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 50px 12px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}



.promo-text {
    font-size: 1rem;
    font-weight: 500;
}

.promo-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 0 5px;
}

.promo-close:hover {
    opacity: 1;
}

.promo-banner.hidden {
    display: none;
}
