@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --primary: #D4AF37; /* Gold */
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #F5DEB3 50%, #B8860B 100%);
    --primary-dark: #B8860B;
    --bg-dark: #070809;
    --bg-card: #121417;
    --text-light: #FFFFFF;
    --text-muted: #8E959E;
    --accent: #E1C16E;
    --glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(212, 175, 55, 0.1);
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 12, 14, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a i {
    margin-right: 5px;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://upload.wikimedia.org/wikipedia/commons/e/ed/3D_printing_in_action.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle 600px at var(--x, 50%) var(--y, 50%), rgba(212, 175, 55, 0.35), transparent 80%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.1s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Custom Cursor (Desktop Only) */
@media (min-width: 769px) {
    body, a, button, .btn, .cart-btn, .close-cart, .faq-question {
        cursor: none !important;
    }

    .custom-cursor {
        position: fixed;
        top: 0; left: 0;
        width: 24px; height: 24px;
        border: 2px solid var(--primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        transition: width 0.1s, height 0.1s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-cursor::after {
        content: '';
        width: 6px; height: 6px;
        background: var(--primary);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--primary);
    }
}

    /* Removed cursor inner dot */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.7s;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
    margin-left: 15px;
}

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

/* Sections */
section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(20, 22, 25, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15), 0 0 40px rgba(212, 175, 55, 0.05) inset;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.product-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.7s ease;
}

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

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(20, 22, 25, 1) 0%, rgba(20, 22, 25, 0.8) 40%, transparent 100%);
}

.product-info {
    padding: 0 30px 30px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -80px; /* Pulls text over the faded image */
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: -20px;
}

.step-card h3 {
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

/* Product Detail Page */
.product-detail {
    padding-top: 150px;
    padding-bottom: 100px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.detail-image img {
    width: 100%;
    display: block;
}

.badge-detail {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-gradient);
    color: var(--bg-dark);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.detail-info h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.divider-small {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 30px;
}

.full-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Order Form */
.order-form-container {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.order-form-container h3 {
    margin-bottom: 10px;
}

.order-form-container p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 15px;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.06);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.whatsapp-btn-large {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.whatsapp-btn-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Special Section: 3D Printing */
.bespoke-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/hero.png');
    background-attachment: fixed;
    background-size: cover;
    padding: 150px 0;
    text-align: center;
}

.bespoke-content {
    max-width: 800px;
    margin: 0 auto;
}

.bespoke-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bespoke-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(20px);
    }
    nav.mobile-open {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 40px;
    }
    nav ul li a {
        font-size: 1.5rem;
    }
    .mobile-menu-btn {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
        z-index: 1001;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}

.mobile-menu-btn {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dolap Styles */
.dolap-badge-link {
    transition: var(--transition);
}
.dolap-badge-link:hover {
    transform: scale(1.05);
}
.dolap-badge-link .trust-badge-item {
    background: rgba(20, 177, 92, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(20, 177, 92, 0.3);
}

.btn-dolap {
    background: #14B15C !important;
    border-color: #14B15C !important;
    color: white !important;
    margin-top: 10px;
}
.btn-dolap:hover {
    background: #0e8a47 !important;
    border-color: #0e8a47 !important;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.trust-badge-item i {
    font-size: 2rem;
    color: var(--primary);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(20, 22, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(20, 22, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-card .stars {
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(10, 12, 14, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.cart-overlay.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--primary);
    margin: 0;
}

.close-cart {
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

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

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cart-item-info h4 { margin-bottom: 5px; font-size: 1rem; color: white; }
.cart-item-info p { color: var(--primary); font-size: 0.9rem; margin: 0; }
.remove-item { color: #ff6b6b; cursor: pointer; transition: 0.3s; }
.remove-item:hover { color: red; transform: scale(1.1); }

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cart-btn {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Floating WhatsApp Pulsing Effect */
.floating-whatsapp {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .cart-overlay { width: 100%; right: -100%; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .contact-section { padding: 100px 0 40px 0 !important; }
}

/* Product Gallery Styles */
.gallery-thumb.active {
    border-color: var(--primary) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
}

.product-gallery::-webkit-scrollbar {
    height: 5px;
}

.product-gallery::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.product-gallery::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

