:root {
    --primary-pink: #ffb6c1;
    --deep-pink: #ffc0cb;
    --text-dark: #2d2d2d;
    --accent-gold: #d4af37;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.main-header {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Layout */
.product-container {
    max-width: 1100px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Gallery */
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.image-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.badge-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Info Section */
.breadcrumb {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #444;
}

.stock-status {
    color: #2ecc71;
    font-size: 0.9rem;
    font-weight: 600;
}

.benefits {
    list-style: none;
    margin: 2rem 0;
}

.benefits li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

/* Actions */
.purchase-zone {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: fit-content;
    border-radius: 8px;
}

.quantity-selector button {
    background: none;
    border: none;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
}

.btn {
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
   
}

.btn-secondary #geo {
    border: none;
    font-weight: bolder;
    background: transparent;
    
}


.trust-badges {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.badge-item {
    font-size: 0.75rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        margin: 1rem;
        padding: 1.5rem;
    }
}