:root {
--primary-yellow: #FFD700;
--secondary-black: #1A1A1A;
--text-light: #FFFFFF;
--text-dark: #333333;
--accent-gray: #2D2D2D;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--secondary-black);
color: var(--text-light);
}
.header-bg {
background-color: var(--primary-yellow);
color: var(--text-dark);
}
.nav-bg {
background-color: var(--secondary-black);
border-bottom: 1px solid var(--primary-yellow);
}
.nav-link {
color: var(--primary-yellow);
transition: color 0.3s ease;
}
.nav-link:hover {
color: var(--text-light);
}
.product-detail-card {
background-color: var(--secondary-black);
border: 1px solid var(--primary-yellow);
color: var(--text-light);
}
.buy-button {
background-color: var(--primary-yellow);
color: var(--text-dark);
transition: all 0.3s ease;
border: 2px solid var(--primary-yellow);
}
.buy-button:hover {
background-color: var(--text-light);
color: var(--secondary-black);
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.whatsapp-button {
background-color: #25D366;
color: white;
transition: all 0.3s ease;
border: 2px solid #25D366;
}
.whatsapp-button:hover {
background-color: #128C7E;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.share-button {
background-color: #333;
color: white;
transition: all 0.3s ease;
border: 2px solid #555;
}
.share-button:hover {
background-color: #444;
transform: translateY(-2px);
}
.counter-card {
background: linear-gradient(135deg, #2D2D2D, #1A1A1A);
border: 1px solid #444;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
}
.counter-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
border-color: var(--primary-yellow);
}
.counter-value {
font-size: 2.5rem;
font-weight: bold;
color: var(--primary-yellow);
transition: all 0.5s ease-out;
}
.counter-label {
color: #aaa;
font-size: 0.9rem;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.pulse {
animation: pulse 2s infinite;
}
.gallery-thumb {
transition: all 0.3s ease;
cursor: pointer;
}
.gallery-thumb:hover {
transform: scale(1.05);
border-color: var(--primary-yellow);
}
.cart-container {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 800px;
max-height: 90vh;
background: var(--secondary-black);
border: 2px solid var(--primary-yellow);
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
z-index: 1000;
overflow-y: auto;
display: none;
}
.cart-header {
background: var(--primary-yellow);
color: var(--text-dark);
padding: 20px;
border-radius: 14px 14px 0 0;
}
.cart-badge {
position: fixed;
top: 20px;
right: 20px;
background: var(--primary-yellow);
color: var(--text-dark);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
z-index: 100;
}
.cart-item {
display: flex;
padding: 15px;
border-bottom: 1px solid #444;
}
.cart-item-image {
width: 100px;
height: 80px;
object-fit: cover;
border-radius: 8px;
margin-right: 15px;
}
.quantity-control {
display: flex;
align-items: center;
margin-top: 8px;
}
.quantity-btn {
width: 30px;
height: 30px;
background: var(--accent-gray);
border: none;
color: white;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.quantity-btn:hover {
background: var(--primary-yellow);
color: var(--text-dark);
}
.quantity-display {
margin: 0 10px;
min-width: 30px;
text-align: center;
}
.remove-btn {
background: transparent;
border: none;
color: #ff4d4d;
cursor: pointer;
margin-left: 10px;
}
.remove-btn:hover {
color: #ff9999;
}
.cart-summary {
padding: 20px;
background: var(--accent-gray);
border-radius: 0 0 14px 14px;
}
.cart-total-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #444;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
z-index: 999;
display: none;
}
.close-cart {
position: absolute;
top: 15px;
right: 15px;
background: transparent;
border: none;
color: var(--text-dark);
font-size: 1.5rem;
cursor: pointer;
}
.close-cart:hover {
color: #d32f2f;
}
.discount-badge {
background: #4CAF50;
color: white;
padding: 3px 8px;
border-radius: 4px;
font-size: 0.8rem;
margin-left: 10px;
}
@media (max-width: 768px) {
.counter-card {
margin-bottom: 15px;
}
.cart-item {
flex-direction: column;
}
.cart-item-image {
width: 100%;
height: 150px;
margin-bottom: 10px;
}
.cart-badge {
top: 10px;
right: 10px;
width: 40px;
height: 40px;
font-size: 1rem;
}
}
.feature-icon {
color: var(--primary-yellow);
background-color: rgba(255, 215, 0, 0.1);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px;
flex-shrink: 0;
}
@keyframes highlight {
0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
}
.highlight {
animation: highlight 1.5s ease;
}
.product-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}
/* New styles for pricing dropdown */
.pricing-selector {
position: relative;
margin-bottom: 1rem;
}
.pricing-select {
width: 100%;
padding: 12px 16px;
background-color: var(--secondary-black);
color: var(--text-light);
border: 1px solid var(--primary-yellow);
border-radius: 8px;
font-size: 1rem;
appearance: none;
cursor: pointer;
transition: all 0.3s ease;
}
.pricing-select:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}
.pricing-select:hover {
background-color: #222;
}
.pricing-option {
padding: 8px 12px;
background-color: var(--secondary-black);
color: var(--text-light);
}
.pricing-option:hover {
background-color: rgba(255, 215, 0, 0.1);
}
.dropdown-arrow {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
color: var(--primary-yellow);
pointer-events: none;
}
.price-display {
display: flex;
align-items: center;
justify-content: space-between;
background-color: var(--accent-gray);
border: 1px solid #444;
border-radius: 8px;
padding: 12px 16px;
}
.price-label {
color: #aaa;
}
.price-value {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary-yellow);
}