/* ===== ULTRA LUXURY ELITE DESIGN ===== */

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

body {
background:#fff;
color:#333;
font-family:'Work Sans', sans-serif;
overflow-x:hidden;
}

/* ===== LUXURY HEADER ===== */
.luxury-header {
background:linear-gradient(90deg, #000 0%, #050505 50%, #000 100%);
padding:30px 60px;
border-bottom:1px solid #d9a44a;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 20px rgba(217, 164, 74, 0.1);
}

.header-top {
display:flex;
justify-content:center;
align-items:center;
margin-bottom:15px;
position:relative;
}

.luxury-logo {
height:50px;
display:flex;
align-items:center;
background:repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(217, 164, 74, 0.05) 2px, rgba(217, 164, 74, 0.05) 4px);
padding:0 15px;
border-radius:4px;
text-decoration:none;
}

.luxury-logo img {
max-width:200px;
max-height:50px;
width:auto;
height:auto;
object-fit:contain;
filter:drop-shadow(0 2px 4px rgba(217, 164, 74, 0.2));
}

.luxury-nav {
position:absolute;
right:0;
display:flex;
gap:40px;
}

.luxury-nav a {
color:#fff;
text-decoration:none;
font-size:12px;
letter-spacing:2px;
font-weight:600;
transition:0.3s;
border-bottom:2px solid transparent;
}

.luxury-nav a:hover {
border-bottom-color:#d9a44a;
color:#d9a44a;
}

/* ===== HAMBURGER MENU ===== */
.hamburger-toggle {
display:none;
flex-direction:column;
gap:6px;
background:none;
border:none;
cursor:pointer;
padding:8px;
justify-content:center;
align-items:center;
position:absolute;
right:20px;
z-index:1001;
}

.hamburger-toggle span {
display:block;
height:3px;
width:25px;
background:#d9a44a;
border-radius:2px;
transition:all 0.4s ease;
}

.hamburger-toggle.active span:nth-child(1) {
transform:rotate(45deg) translate(12px, 12px);
}

.hamburger-toggle.active span:nth-child(2) {
opacity:0;
}

.hamburger-toggle.active span:nth-child(3) {
transform:rotate(-45deg) translate(11px, -11px);
}

.luxury-nav.mobile-active {
position:fixed;
top:130px;
left:0;
right:0;
flex-direction:column;
gap:0;
background:rgba(0, 0, 0, 0.98);
padding:20px 0;
width:100%;
border-bottom:2px solid #d9a44a;
backdrop-filter:blur(10px);
}

.luxury-nav.mobile-active a {
padding:15px 30px;
border-bottom:1px solid #333;
font-size:14px;
}

.luxury-nav.mobile-active a:last-child {
border-bottom:none;
}

.luxury-tagline {
text-align:center;
color:#d9a44a;
font-size:11px;
letter-spacing:3px;
font-weight:700;
}

/* ===== ULTRA PREMIUM HERO ===== */
.luxury-hero {
position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
min-height:600px;
}

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

.hero-overlay {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:radial-gradient(circle at center, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
z-index:2;
}

.hero-luxury-content {
position:relative;
z-index:3;
text-align:center;
color:#fff;
max-width:900px;
padding:0 40px;
animation:fadeInUp 1.2s ease-out;
}

.hero-exclusive {
font-size:13px;
letter-spacing:3px;
color:#d9a44a;
font-weight:700;
margin-bottom:20px;
}

.hero-luxury-title {
font-family:'Montserrat', sans-serif;
font-size:92px;
font-weight:900;
letter-spacing:4px;
line-height:1.1;
margin:0 0 10px;
text-shadow:0 10px 40px rgba(0,0,0,0.8);
}

.title-accent {
color:#d9a44a;
display:block;
font-weight:800;
}

.hero-luxury-subtitle {
font-size:22px;
font-weight:300;
letter-spacing:1px;
margin-bottom:50px;
line-height:1.6;
text-shadow:0 5px 20px rgba(0,0,0,0.8);
}

.hero-ctas {
display:flex;
gap:30px;
justify-content:center;
margin-bottom:50px;
flex-wrap:wrap;
}

.luxury-cta {
padding:16px 45px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-decoration:none;
border-radius:2px;
transition:0.4s;
display:inline-block;
border:2px solid transparent;
}

.luxury-cta.primary {
background:#d9a44a;
color:#000;
box-shadow:0 10px 30px rgba(217, 164, 74, 0.3);
}

.luxury-cta.primary:hover {
transform:translateY(-3px);
box-shadow:0 15px 50px rgba(217, 164, 74, 0.5);
}

.luxury-cta.secondary {
color:#d9a44a;
border-color:#d9a44a;
background:transparent;
}

.luxury-cta.secondary:hover {
background:#d9a44a;
color:#000;
}

.hero-badge {
font-size:11px;
letter-spacing:2px;
color:#d9a44a;
text-transform:uppercase;
font-weight:700;
}

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

/* ===== LUXURY TIER SYSTEM ===== */
.luxury-tiers {
padding:100px 60px;
background:#f5f5f5;
text-align:center;
}

.luxury-tiers h2 {
font-family:'Montserrat', sans-serif;
font-size:56px;
margin-bottom:80px;
letter-spacing:2px;
}

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

.tier-card {
background:#fff;
padding:60px 40px;
border:1px solid #e0e0e0;
text-align:center;
transition:0.4s;
position:relative;
}

.tier-card:hover {
transform:translateY(-10px);
box-shadow:0 20px 60px rgba(0,0,0,0.1);
border-color:#d9a44a;
}

.tier-card.featured {
border:2px solid #d9a44a;
box-shadow:0 20px 60px rgba(217, 164, 74, 0.2);
transform:scale(1.05);
}

.tier-label {
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#000;
color:#d9a44a;
padding:8px 20px;
font-size:11px;
font-weight:700;
letter-spacing:2px;
}

.tier-label.elite {
color:#fff;
background:#d9a44a;
}

.tier-card h3 {
font-family:'Montserrat', sans-serif;
font-size:32px;
margin:20px 0 15px;
}

.tier-benefit {
color:#d9a44a;
font-weight:600;
margin-bottom:30px;
}

.tier-features {
list-style:none;
text-align:left;
margin-top:30px;
border-top:1px solid #e0e0e0;
padding-top:30px;
}

.tier-features li {
padding:12px 0;
color:#666;
}

/* ===== PRODUCTS HERO ===== */
.products-hero {
position:relative;
height:500px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:80px;
}

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

.products-hero .hero-content {
position:relative;
z-index:2;
text-align:center;
color:#fff;
}

.products-hero-title {
font-family:'Montserrat', sans-serif;
font-size:80px;
font-weight:900;
letter-spacing:3px;
margin:0 0 20px;
text-shadow:0 8px 30px rgba(0,0,0,0.8);
}

.products-hero-subtitle {
font-size:22px;
font-weight:300;
letter-spacing:2px;
text-shadow:0 4px 15px rgba(0,0,0,0.8);
margin:0;
}

/* ===== PREMIUM COLLECTION ===== */
.premium-collection {
padding:120px 60px;
background:#fff;
}

.collection-intro {
text-align:center;
margin-bottom:100px;
}

.collection-intro h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
letter-spacing:2px;
margin-bottom:20px;
font-weight:800;
}

.collection-intro p {
font-size:18px;
color:#666;
max-width:600px;
margin:0 auto;
font-weight:300;
}

.luxury-product-showcase {
display:grid;
grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
gap:60px;
}

.luxury-product-card {
text-decoration:none;
color:inherit;
group:hover;
transition:0.5s;
}

.luxury-product-card:hover .product-showcase {
transform:scale(1.02);
}

.product-showcase {
position:relative;
overflow:hidden;
aspect-ratio:1;
margin-bottom:30px;
background:#f5f5f5;
background:#f5f5f5;
transition:0.5s;
}

.product-showcase img {
width:100%;
height:100%;
object-fit:contain;
padding:40px;
transition:0.5s;
}

.product-showcase:hover img {
transform:scale(1.05);
}

.product-overlay {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(135deg, rgba(0,0,0,0.7), rgba(217, 164, 74, 0.2));
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
color:#fff;
text-align:center;
opacity:0;
transition:0.4s;
}

.luxury-product-card:hover .product-overlay {
opacity:1;
}

.product-overlay h3 {
font-family:'Montserrat', sans-serif;
font-size:24px;
margin:15px 0;
font-weight:800;
}

.product-overlay p {
font-size:14px;
color:#d9a44a;
letter-spacing:1px;
}

.limited-badge, .premium-badge, .exclusive-badge {
display:inline-block;
padding:8px 16px;
font-size:11px;
font-weight:700;
letter-spacing:1px;
margin-bottom:20px;
border-radius:2px;
}

.limited-badge {
background:#d9a44a;
color:#000;
}

.premium-badge {
background:#fff;
color:#000;
}

.exclusive-badge {
border:2px solid #d9a44a;
color:#d9a44a;
background:transparent;
}

.product-specs {
background:#f5f5f5;
padding:30px;
border:1px solid #e0e0e0;
transition:0.3s;
}

.product-specs:hover {
border-color:#d9a44a;
}

.spec-row {
display:flex;
justify-content:space-between;
padding:12px 0;
border-bottom:1px solid #ddd;
font-size:13px;
}

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

.spec-row span:first-child {
color:#666;
font-weight:600;
}

.spec-row span:last-child {
color:#333;
font-weight:700;
}

.price-luxury {
font-family:'Montserrat', sans-serif;
font-size:32px;
color:#d9a44a;
margin-top:20px;
font-weight:700;
letter-spacing:1px;
}

/* ===== TESTIMONIALS ===== */
.elite-testimonials {
padding:100px 60px;
background:#000;
color:#fff;
text-align:center;
}

.elite-testimonials h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
margin-bottom:60px;
letter-spacing:2px;
font-weight:800;
}

.testimonial-intro {
font-size:18px;
color:#d9a44a;
margin-bottom:80px;
font-weight:300;
}

.testimonials-grid {
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:50px;
max-width:1000px;
margin:0 auto;
}

.testimonial-card {
background:#111;
padding:50px 40px;
border-left:3px solid #d9a44a;
transition:0.3s;
}

.testimonial-card:hover {
transform:translateY(-5px);
}

.testimonial-stars {
color:#d9a44a;
font-size:18px;
margin-bottom:20px;
letter-spacing:2px;
}

.testimonial-text {
font-size:16px;
line-height:1.8;
margin-bottom:30px;
font-style:italic;
color:#ddd;
}

.testimonial-author strong {
display:block;
color:#d9a44a;
font-weight:700;
margin-bottom:5px;
}

.testimonial-author span {
font-size:12px;
color:#999;
letter-spacing:1px;
}

/* ===== PREMIUM BENEFITS ===== */
.premium-benefits {
padding:100px 60px;
background:#f5f5f5;
text-align:center;
}

.premium-benefits h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
margin-bottom:80px;
letter-spacing:2px;
font-weight:800;
}

.benefits-grid {
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:50px;
}

.benefit-item {
background:#fff;
padding:50px 40px;
border:1px solid #e0e0e0;
transition:0.3s;
}

.benefit-item:hover {
transform:translateY(-8px);
border-color:#d9a44a;
box-shadow:0 15px 40px rgba(217, 164, 74, 0.15);
}

.benefit-icon {
font-size:48px;
margin-bottom:20px;
}

.benefit-item h3 {
font-family:'Montserrat', sans-serif;
font-size:22px;
margin-bottom:15px;
color:#333;
}

.benefit-item p {
color:#666;
line-height:1.6;
font-size:14px;
}

/* ===== FINAL CTA ===== */
.luxury-final-cta {
padding:100px 60px;
text-align:center;
background:linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('./images/gym-banner.png') center top/cover;
color:#fff;
}

.luxury-final-cta h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
margin-bottom:20px;
letter-spacing:2px;
font-weight:800;
}

.luxury-final-cta p {
font-size:20px;
color:#d9a44a;
margin-bottom:50px;
font-weight:300;
}

.cta-buttons {
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.cta-primary, .cta-secondary {
padding:16px 45px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-decoration:none;
bordedr-radius:2px;
transition:0.4s;
display:inline-block;
border:2px solid transparent;
}

.cta-primary {
background:#d9a44a;
color:#000;
box-shadow:0 10px 30px rgba(217, 164, 74, 0.3);
}

.cta-primary:hover {
transform:translateY(-3px);
box-shadow:0 15px 50px rgba(217, 164, 74, 0.5);
}

.cta-secondary {
color:#d9a44a;
border-color:#d9a44a;
background:transparent;
}

.cta-secondary:hover {
background:#d9a44a;
color:#000;
}

/* ===== LUXURY FOOTER ===== */
.luxury-footer {
background:#000;
color:#fff;
padding:80px 60px 40px;
border-top:1px solid #d9a44a;
}

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

.footer-section h3 {
font-family:'Montserrat', sans-serif;
font-size:16px;
color:#d9a44a;
margin-bottom:25px;
letter-spacing:2px;
}

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

.footer-section li {
margin-bottom:12px;
}

.footer-section a {
color:#ccc;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.footer-section a:hover {
color:#d9a44a;
}

.footer-section p {
font-size:13px;
color:#999;
line-height:1.8;
margin-bottom:15px;
}

.luxury-newsletter {
display:flex;
gap:0;
overflow:hidden;
border:1px solid #d9a44a;
}

.luxury-newsletter input {
flex:1;
padding:12px 15px;
background:#111;
border:none;
color:#fff;
outline:none;
font-size:13px;
}

.luxury-newsletter input::placeholder {
color:#666;
}

.luxury-newsletter button {
padding:12px 25px;
background:#d9a44a;
border:none;
color:#000;
font-weight:700;
cursor:pointer;
font-size:12px;
letter-spacing:1px;
transition:0.3s;
}

.luxury-newsletter button:hover {
background:#b8943f;
}

.footer-bottom {
border-top:1px solid #333;
padding-top:30px;
text-align:center;
color:#999;
font-size:12px;
}

.footer-bottom p {
margin:8px 0;
letter-spacing:1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
.luxury-header {
padding:20px 30px;
}

.luxury-nav {
gap:20px;
}

.hero-luxury-title {
font-size:70px;
}
}

@media (max-width:768px) {
.luxury-header {
padding:15px 20px;
flex-direction:column;
position:relative;
}

.header-top {
display:flex;
justify-content:center;
align-items:center;
margin-bottom:10px;
width:100%;
}

.hamburger-toggle {
display:flex;
}

.luxury-nav {
display:none;
gap:0;
font-size:11px;
}

.luxury-nav.mobile-active {
display:flex;
}

.luxury-hero {
position:relative;
height:auto;
min-height:650px;
overflow:visible;
display:flex;
align-items:center;
justify-content:center;
padding:80px 0;
}

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

.hero-overlay {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:radial-gradient(circle at center, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
z-index:2;
}

.hero-luxury-content {
position:relative;
z-index:3;
text-align:center;
color:#fff;
max-width:90vw;
width:100%;
padding:20px 15px;
overflow:visible;
animation:fadeInUp 1.2s ease-out;
}

.hero-exclusive {
font-size:11px;
letter-spacing:1px;
color:#d9a44a;
font-weight:700;
margin-bottom:12px;
display:block;
}

.hero-luxury-title {
font-family:'Montserrat', sans-serif;
font-size:22px;
font-weight:900;
letter-spacing:1px;
line-height:1.5;
margin:0 0 15px;
text-shadow:0 2px 10px rgba(0,0,0,0.8);
word-wrap:break-word;
white-space:normal;
overflow-wrap:break-word;
}

.title-accent {
color:#d9a44a;
display:inline;
font-weight:800;
margin-left:0.3em;
}

.hero-luxury-subtitle {
font-size:13px;
font-weight:300;
letter-spacing:0.5px;
margin-bottom:30px;
line-height:1.6;
text-shadow:0 2px 8px rgba(0,0,0,0.8);
}

.hero-ctas {
flex-direction:column;
gap:15px;
}

.products-hero-title {
font-size:50px;
}

.products-hero-subtitle {
font-size:16px;
}

.luxury-tiers, .premium-collection, .premium-benefits, .luxury-final-cta {
padding:60px 20px;
}

.luxury-product-showcase {
gap:30px;
}

.tiers-grid {
gap:20px;
}

.tier-card.featured {
transform:scale(1);
}

.luxury-footer, .footer-content {
padding:40px 20px;
gap:30px;
}
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:radial-gradient(circle,#111,#000);
}

.title{
font-family:'Montserrat', sans-serif;
font-size:120px;
letter-spacing:6px;
}

.subtitle{
font-size:22px;
margin-bottom:40px;
}

.cta{
background:#d9a44a;
border:none;
padding:15px 35px;
border-radius:40px;
font-size:18px;
text-decoration:none;
color:black;
display:inline-block;
}

.products{
padding:120px 10%;
}

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

.card{
background:#111;
padding:25px;
border-radius:15px;
transition:0.4s;
text-align:center;
}

.card:hover{
transform:scale(1.05);
}

.card img{
width:100%;
}

.card-link{
text-decoration:none;
color:white;
}

.product-detail{
padding:120px 10%;
text-align:center;
}

.product-detail img{
max-width:400px;
width:100%;
margin-bottom:20px;
}

.product-detail h1{
font-family:'Montserrat', sans-serif;
font-size:48px;
margin-bottom:10px;
}

.product-detail .price{
font-size:24px;
color:#d9a44a;
margin-bottom:20px;
}

.product-detail .description{
max-width:600px;
margin:0 auto 30px;
line-height:1.6;
}

.add-to-cart{
background:#d9a44a;
border:none;
padding:15px 35px;
border-radius:40px;
font-size:18px;
cursor:pointer;
margin-top:20px;
}

.add-to-cart:hover{
background:#b8943f;
}

.product-banner{
min-height:400px;
width:100%;
background:linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/gym-banner.png') center top/cover no-repeat, #d9a44a;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
border:3px solid #d9a44a;
box-shadow:inset 0 0 30px rgba(217, 164, 74, 0.4), 0 0 15px rgba(217, 164, 74, 0.2);
margin:15px 0;
padding:15px;
position:relative;
z-index:10;
}

.product-banner h1{
font-family:'Montserrat', sans-serif;
font-size:64px;
margin:0;
text-shadow:2px 2px 4px rgba(0,0,0,0.8), 0 0 20px rgba(217, 164, 74, 0.5);
color:#fff;
letter-spacing:4px;
}

.product-detail-main{
padding:80px 10%;
display:flex;
flex-wrap:wrap;
gap:60px;
align-items:center;
justify-content:center;
}

.product-image{
flex:1;
min-width:300px;
text-align:center;
}

.product-image img{
max-width:400px;
width:100%;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.product-info{
flex:1;
min-width:300px;
text-align:left;
}

.product-info h1{
font-family:'Montserrat', sans-serif;
font-size:48px;
margin-bottom:10px;
color:#d9a44a;
}

.product-info .price{
font-size:28px;
color:#fff;
margin-bottom:20px;
font-weight:bold;
}

.product-info .description{
line-height:1.8;
margin-bottom:30px;
font-size:18px;
}

.features{
background:#111;
padding:40px;
border-radius:15px;
margin-bottom:30px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.features h3{
font-family:'Montserrat', sans-serif;
font-size:32px;
margin-bottom:20px;
color:#d9a44a;
}

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

.features li{
padding:10px 0;
border-bottom:1px solid #333;
font-size:16px;
}

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

.nutrition{
background:#0a0a0a;
padding:40px;
border-radius:15px;
margin-bottom:30px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.nutrition h3{
font-family:'Montserrat', sans-serif;
font-size:32px;
margin-bottom:20px;
color:#d9a44a;
}

.nutrition-table{
width:100%;
border-collapse:collapse;
}

.nutrition-table th, .nutrition-table td{
padding:15px;
text-align:left;
border-bottom:1px solid #333;
}

.nutrition-table th{
color:#d9a44a;
font-weight:bold;
}

.add-to-cart{
background:linear-gradient(45deg, #d9a44a, #b8943f);
border:none;
padding:18px 40px;
border-radius:50px;
font-size:20px;
font-weight:bold;
cursor:pointer;
margin-top:20px;
box-shadow:0 5px 15px rgba(217, 164, 74, 0.3);
transition:0.3s;
}

.add-to-cart:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(217, 164, 74, 0.4);
}

/* Premium Homepage Styles */
.premium-hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}

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

.hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
}

.hero-title{
font-family:'Montserrat', sans-serif;
font-size:120px;
letter-spacing:8px;
margin:0;
text-shadow:0 5px 20px rgba(0,0,0,0.8), 0 0 30px rgba(217, 164, 74, 0.4);
animation:slideDown 1s ease-out;
}

.hero-subtitle{
font-size:24px;
margin:20px 0 40px;
font-weight:300;
letter-spacing:2px;
text-shadow:0 3px 10px rgba(0,0,0,0.8);
}

.hero-cta{
background:linear-gradient(45deg, #d9a44a, #b8943f);
color:black;
padding:18px 50px;
border-radius:50px;
font-size:18px;
font-weight:bold;
text-decoration:none;
display:inline-block;
box-shadow:0 8px 20px rgba(217, 164, 74, 0.4);
transition:0.3s;
border:2px solid #d9a44a;
}

.hero-cta:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(217, 164, 74, 0.6);
}

@keyframes slideDown {
from{
opacity:0;
transform:translateY(-50px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* Featured Section */
.featured-section{
padding:100px 10%;
background:#050505;
}

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

.section-header h2{
font-family:'Montserrat', sans-serif;
font-size:64px;
letter-spacing:4px;
margin:0 0 15px;
color:#fff;
}

.section-header p{
font-size:20px;
color:#d9a44a;
margin:0;
}

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

.featured-card{
position:relative;
text-decoration:none;
color:inherit;
border-radius:20px;
overflow:hidden;
transition:0.4s;
}

.featured-card:hover{
transform:translateY(-10px);
}

.featured-image{
position:relative;
height:350px;
background:#111;
border-radius:20px 20px 0 0;
overflow:hidden;
}

.featured-image img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

.featured-card:hover .featured-image img{
transform:scale(1.05);
}

.badge{
position:absolute;
top:15px;
right:15px;
background:#d9a44a;
color:black;
padding:8px 16px;
border-radius:50px;
font-size:12px;
font-weight:bold;
letter-spacing:1px;
}

.featured-info{
background:#111;
padding:30px;
border-radius:0 0 20px 20px;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.featured-info h3{
font-family:'Montserrat', sans-serif;
font-size:28px;
margin:0 0 10px;
color:#fff;
}

.featured-info p{
font-size:14px;
color:#999;
margin:0 0 15px;
}

.featured-info .price{
font-size:24px;
color:#d9a44a;
font-weight:bold;
}

/* Elite Features Section */
.elite-features{
padding:100px 10%;
background:#0a0a0a;
}

.elite-features h2{
font-family:'Montserrat', sans-serif;
font-size:56px;
letter-spacing:3px;
text-align:center;
margin-bottom:80px;
color:#fff;
}

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

.feature-item{
text-align:center;
padding:40px;
background:#111;
border-radius:15px;
border:2px solid #222;
transition:0.3s;
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */
.product-hero-banner {
height:400px;
background:linear-gradient(135deg, rgba(50, 40, 20, 0.75) 0%, rgba(217, 164, 74, 0.55) 50%, rgba(20, 15, 5, 0.8) 100%), url('./images/gym-banner.png') center top/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
margin-bottom:100px;
}

.product-hero-banner h1 {
font-family:'Montserrat', sans-serif;
font-size:64px;
font-weight:900;
color:#fff;
letter-spacing:3px;
margin-bottom:10px;
text-shadow:0 2px 8px rgba(0,0,0,0.3);
}

.product-hero-banner p {
font-size:18px;
color:#fff;
letter-spacing:2px;
font-weight:300;
text-shadow:0 1px 4px rgba(0,0,0,0.3);
}

.premium-product-detail {
background:#fff;
padding:80px;
}

.product-detail-container {
display:flex;
gap:80px;
margin-bottom:100px;
}

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

.product-detail-image img {
width:100%;
height:auto;
border-radius:10px;
}

/* Gradient Variants for Different Products */
.product-hero-banner.mass-gainer {
background:linear-gradient(135deg, rgba(60, 40, 15, 0.75) 0%, rgba(217, 164, 74, 0.58) 50%, rgba(25, 15, 5, 0.82) 100%), url('./images/gym-banner.png') center top/cover no-repeat;
}

.product-hero-banner.whey-protein {
background:linear-gradient(135deg, rgba(30, 45, 55, 0.75) 0%, rgba(217, 164, 74, 0.56) 50%, rgba(15, 22, 30, 0.80) 100%), url('./images/gym-banner.png') center top/cover no-repeat;
}

.product-hero-banner.whey-isolate {
background:linear-gradient(135deg, rgba(20, 50, 65, 0.75) 0%, rgba(217, 164, 74, 0.54) 50%, rgba(10, 25, 35, 0.82) 100%), url('./images/gym-banner.png') center top/cover no-repeat;
}

.product-badge {
position:absolute;
top:30px;
right:30px;
background:#d9a44a;
color:#000;
padding:12px 25px;
border-radius:50px;
font-size:11px;
font-weight:700;
letter-spacing:2px;
}

.product-detail-info {
flex:1;
}

.product-price {
font-family:'Montserrat', sans-serif;
font-size:48px;
font-weight:900;
color:#d9a44a;
margin:30px 0;
letter-spacing:1px;
}

.premium-add-to-cart {
background:linear-gradient(135deg, #d9a44a, #b8891a);
color:#000;
border:none;
padding:16px 50px;
font-size:14px;
font-weight:700;
letter-spacing:2px;
cursor:pointer;
border-radius:50px;
transition:all 0.3s ease;
margin:40px 0;
}

.premium-add-to-cart:hover {
transform:translateY(-2px);
box-shadow:0 10px 30px rgba(217, 164, 74, 0.3);
}

.product-features-section {
margin:60px 0;
}

.product-features-section h3 {
font-family:'Montserrat', sans-serif;
font-size:28px;
font-weight:700;
color:#000;
margin-bottom:40px;
letter-spacing:1px;
}

.features-grid {
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:30px;
margin-bottom:60px;
}

.feature-card {
background:#111;
padding:40px;
border-radius:10px;
border:1px solid #333;
text-align:center;
transition:all 0.3s ease;
}

.feature-card:hover {
border-color:#d9a44a;
}

.feature-value {
font-family:'Montserrat', sans-serif;
font-size:32px;
font-weight:900;
color:#d9a44a;
margin-bottom:10px;
}

.feature-desc {
font-size:12px;
color:#999;
letter-spacing:1px;
font-weight:600;
}

.product-comprehensive-features {
margin:60px 0;
}

.product-comprehensive-features h3 {
font-family:'Montserrat', sans-serif;
font-size:28px;
font-weight:700;
color:#000;
margin-bottom:40px;
letter-spacing:1px;
}

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

.features-list li {
padding:15px 0;
padding-left:30px;
color:#333;
font-size:14px;
line-height:1.8;
border-bottom:1px solid #f0f0f0;
position:relative;
}

.features-list li:before {
content:'✓';
position:absolute;
left:0;
color:#d9a44a;
font-weight:700;
font-size:18px;
}

.product-nutrition-section {
margin:60px 0;
}

.product-nutrition-section h3 {
font-family:'Montserrat', sans-serif;
font-size:28px;
font-weight:700;
color:#000;
margin-bottom:40px;
letter-spacing:1px;
}

.premium-nutrition-table {
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.premium-nutrition-table th {
background:#000;
color:#d9a44a;
padding:15px;
text-align:left;
font-size:12px;
font-weight:700;
letter-spacing:1px;
}

.premium-nutrition-table td {
padding:15px;
border-bottom:1px solid #f0f0f0;
color:#333;
font-size:13px;
}

.premium-nutrition-table tr:last-child td {
border-bottom:none;
}

.why-choose-section {
margin:80px 0;
padding:80px;
background:#111;
border-radius:10px;
}

.why-choose-section h3 {
font-family:'Montserrat', sans-serif;
font-size:28px;
font-weight:700;
color:#d9a44a;
margin-bottom:60px;
text-align:center;
letter-spacing:1px;
}

.why-choose-grid {
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:40px;
}

.why-item {
text-align:center;
}

.why-icon {
font-size:48px;
margin-bottom:20px;
}

.why-item h4 {
font-family:'Montserrat', sans-serif;
font-size:18px;
font-weight:700;
color:#d9a44a;
margin-bottom:15px;
}

.why-item p {
color:#999;
font-size:14px;
line-height:1.8;
}

.product-cta-section {
padding:100px 80px;
background:linear-gradient(135deg, rgba(50, 40, 20, 0.75) 0%, rgba(217, 164, 74, 0.55) 50%, rgba(20, 15, 5, 0.8) 100%), url('./images/gym-banner.png') center top/cover no-repeat;
text-align:center;
margin-top:80px;
border-radius:10px;
}

.product-cta-section h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
font-weight:900;
color:#d9a44a;
margin-bottom:20px;
letter-spacing:2px;
}

.product-cta-section p {
font-size:18px;
color:#ccc;
margin-bottom:40px;
}

.product-cta-section .premium-add-to-cart {
margin:0;
}

/* ===== RESPONSIVE PRODUCT DETAIL ===== */
@media(max-width:1024px) {
.product-detail-container {
flex-direction:column;
gap:40px;
}

.features-grid {
grid-template-columns:repeat(2, 1fr);
}

.why-choose-grid {
grid-template-columns:repeat(2, 1fr);
}

.premium-product-detail {
padding:60px 40px;
}

.product-cta-section {
padding:60px 40px;
}
}

@media(max-width:768px) {
.product-hero-banner {
height:300px;
margin-bottom:60px;
}

.product-hero-banner h1 {
font-size:40px;
}

.product-hero-banner p {
font-size:14px;
}

.product-detail-image img {
margin-bottom:40px;
}

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

.why-choose-grid {
grid-template-columns:1fr;
}

.premium-product-detail {
padding:40px 20px;
}

.product-cta-section {
padding:40px 20px;
}

.product-price {
font-size:36px;
}

.premium-nutrition-table th,
.premium-nutrition-table td {
padding:10px;
font-size:12px;
}

.product-badge {
top:15px;
right:15px;
padding:8px 15px;
font-size:10px;
}
}

.feature-item:hover{
border-color:#d9a44a;
box-shadow:0 10px 30px rgba(217, 164, 74, 0.2);
}

.feature-icon{
font-size:48px;
margin-bottom:20px;
}

.feature-item h3{
font-family:'Montserrat', sans-serif;
font-size:24px;
margin:0 0 15px;
color:#d9a44a;
}

.feature-item p{
color:#999;
line-height:1.6;
margin:0;
}

/* CTA Section */
.cta-section{
padding:100px 10%;
text-align:center;
background:linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('./images/gym-banner.png') center top/cover no-repeat;
}

.cta-section h2{
font-family:'Montserrat', sans-serif;
font-size:56px;
letter-spacing:3px;
margin:0 0 20px;
color:#fff;
text-shadow:0 3px 10px rgba(0,0,0,0.8);
}

.cta-section p{
font-size:20px;
color:#d9a44a;
margin-bottom:40px;
}

.cta-button{
background:linear-gradient(45deg, #d9a44a, #b8943f);
color:black;
padding:18px 50px;
border-radius:50px;
font-size:18px;
font-weight:bold;
text-decoration:none;
display:inline-block;
box-shadow:0 8px 20px rgba(217, 164, 74, 0.4);
transition:0.3s;
border:2px solid #d9a44a;
}

.cta-button:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(217, 164, 74, 0.6);
}

/* Responsive Design */
/* Footer Styles */
.footer{
background:#000;
border-top:3px solid #d9a44a;
padding:80px 10%;
margin-top:100px;
}

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

.footer-column h3{
font-family:'Montserrat', sans-serif;
font-size:20px;
color:#d9a44a;
margin:0 0 20px;
letter-spacing:2px;
}

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

.footer-column ul li{
margin-bottom:12px;
}

.footer-column a{
color:#ccc;
text-decoration:none;
transition:0.3s;
}

.footer-column a:hover{
color:#d9a44a;
}

.footer-column p{
color:#999;
line-height:1.8;
margin:10px 0;
}

.newsletter-form{
display:flex;
gap:0;
margin:20px 0;
overflow:hidden;
border-radius:50px;
border:2px solid #d9a44a;
}

.newsletter-form input{
flex:1;
padding:12px 20px;
border:none;
outline:none;
background:#111;
color:white;
font-size:14px;
}

.newsletter-form input::placeholder{
color:#666;
}

.newsletter-form button{
padding:12px 25px;
background:#d9a44a;
border:none;
color:black;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.newsletter-form button:hover{
background:#b8943f;
}

.social-links{
display:flex;
gap:15px;
margin-top:20px;
}

.social-links a{
display:inline-block;
width:40px;
height:40px;
line-height:40px;
text-align:center;
background:#111;
border:2px solid #d9a44a;
border-radius:50%;
color:#d9a44a;
font-weight:bold;
transition:0.3s;
text-decoration:none;
font-size:18px;
}

.social-links a:hover{
background:#d9a44a;
color:black;
}

.footer-bottom{
border-top:1px solid #333;
padding-top:30px;
text-align:center;
color:#999;
}

.footer-bottom p{
margin:8px 0;
font-size:14px;
}

@media (max-width:768px){
.hero-title{
font-size:60px;
}

.hero-subtitle{
font-size:18px;
}

.section-header h2{
font-size:40px;
}

.featured-grid{
grid-template-columns:1fr;
gap:30px;
}

.elite-features h2{
font-size:36px;
}

.cta-section h2{
font-size:36px;
}

.footer-container{
grid-template-columns:1fr;
gap:40px;
}

.newsletter-form{
flex-direction:column;
}
}

/* ===== PRODUCT DETAIL PAGE - CLEAN DESIGN ===== */
.luxury-hero {
position:relative;
height:500px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:80px;
}

.hero-overlay {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
z-index:1;
}

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

.hero-luxury-content {
position:relative;
z-index:2;
text-align:center;
color:#fff;
max-width:900px;
padding:0 40px;
}

.hero-luxury-title {
font-family:'Montserrat', sans-serif;
font-size:72px;
font-weight:900;
letter-spacing:3px;
margin:0 0 15px;
text-shadow:0 5px 15px rgba(0,0,0,0.8);
}

.title-accent {
color:#d9a44a;
display:block;
font-weight:800;
}

.hero-luxury-subtitle {
font-size:20px;
font-weight:300;
letter-spacing:1px;
margin-bottom:50px;
line-height:1.6;
text-shadow:0 3px 10px rgba(0,0,0,0.6);
}

/* Product Main Container */
.product-detail-section {
padding:80px 60px;
background:#fff;
}

.product-main-container {
display:flex;
gap:100px;
margin-bottom:120px;
align-items:flex-start;
}

.product-main-image {
flex:1;
position:relative;
}

.product-main-image img {
width:100%;
max-width:500px;
height:auto;
border-radius:8px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.product-main-info {
flex:1;
}

.product-main-info h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
font-weight:900;
color:#000;
margin-bottom:15px;
letter-spacing:2px;
}

.product-tagline {
font-size:16px;
color:#d9a44a;
letter-spacing:2px;
font-weight:600;
margin-bottom:30px;
}

.product-description {
font-size:15px;
color:#666;
line-height:1.8;
margin-bottom:40px;
}

.product-highlights {
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:25px;
margin:60px 0;
padding:40px 0;
border-top:1px solid #e0e0e0;
border-bottom:1px solid #e0e0e0;
}

.highlight-item {
text-align:center;
}

.highlight-label {
display:block;
font-size:11px;
color:#999;
letter-spacing:2px;
font-weight:600;
margin-bottom:10px;
text-transform:uppercase;
}

.highlight-value {
display:block;
font-family:'Montserrat', sans-serif;
font-size:32px;
font-weight:900;
color:#d9a44a;
}

.product-price {
font-family:'Montserrat', sans-serif;
font-size:42px;
font-weight:900;
color:#d9a44a;
margin-bottom:40px;
letter-spacing:1px;
}

.product-main-info .luxury-cta {
width:100%;
text-align:center;
padding:18px 45px;
font-size:13px;
}

/* Product Benefits Section */
.product-benefits-section {
padding:100px 60px;
background:#f5f5f5;
text-align:center;
}

.product-benefits-section h3 {
font-family:'Montserrat', sans-serif;
font-size:42px;
font-weight:900;
color:#000;
margin-bottom:60px;
letter-spacing:2px;
}

.benefits-grid {
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:40px;
}

.benefit-item {
background:#fff;
padding:50px 30px;
border:1px solid #e0e0e0;
border-radius:8px;
transition:all 0.3s ease;
text-align:center;
}

.benefit-item:hover {
transform:translateY(-5px);
border-color:#d9a44a;
box-shadow:0 10px 30px rgba(217, 164, 74, 0.1);
}

.benefit-icon {
font-size:42px;
margin-bottom:20px;
}

.benefit-item h4 {
font-family:'Montserrat', sans-serif;
font-size:18px;
font-weight:800;
color:#000;
margin-bottom:15px;
letter-spacing:1px;
}

.benefit-item p {
color:#666;
font-size:14px;
line-height:1.7;
}

/* Testimonials */
.elite-testimonials {
padding:100px 60px;
background:#000;
color:#fff;
text-align:center;
}

.elite-testimonials h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
font-weight:900;
color:#fff;
margin-bottom:60px;
letter-spacing:2px;
}

.testimonials-grid {
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:50px;
max-width:1000px;
margin:0 auto;
}

.testimonial-card {
background:#111;
padding:50px 40px;
border-left:4px solid #d9a44a;
border-radius:4px;
transition:all 0.3s ease;
text-align:center;
}

.testimonial-card:hover {
transform:translateY(-5px);
}

.testimonial-stars {
color:#d9a44a;
font-size:18px;
margin-bottom:25px;
letter-spacing:2px;
}

.testimonial-text {
font-size:16px;
line-height:1.8;
margin-bottom:30px;
font-style:italic;
color:#ddd;
}

.testimonial-author strong {
display:block;
color:#d9a44a;
font-weight:700;
margin-bottom:5px;
}

.testimonial-author span {
font-size:12px;
color:#999;
letter-spacing:1px;
}

/* Final CTA Section */
.luxury-final-cta {
padding:100px 60px;
text-align:center;
background:linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('./images/gym-banner.png') center top/cover;
background-attachment:fixed;
color:#fff;
margin:100px 0 0 0;
}

.luxury-final-cta h2 {
font-family:'Montserrat', sans-serif;
font-size:48px;
font-weight:900;
color:#fff;
margin-bottom:20px;
letter-spacing:2px;
}

.luxury-final-cta p {
font-size:18px;
color:#d9a44a;
margin-bottom:50px;
font-weight:300;
}

.cta-buttons {
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.cta-primary {
padding:16px 45px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-decoration:none;
border-radius:2px;
transition:0.4s;
display:inline-block;
border:2px solid transparent;
background:#d9a44a;
color:#000;
box-shadow:0 10px 30px rgba(217, 164, 74, 0.3);
}

.cta-primary:hover {
transform:translateY(-3px);
box-shadow:0 15px 50px rgba(217, 164, 74, 0.5);
}

/* Responsive */
@media(max-width:1024px) {
.product-main-container {
flex-direction:column;
gap:60px;
}

.product-highlights {
grid-template-columns:repeat(2, 1fr);
}

.benefits-grid {
grid-template-columns:repeat(2, 1fr);
}

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

.product-detail-section {
padding:60px 40px;
}

.product-benefits-section {
padding:80px 40px;
}

.elite-testimonials {
padding:80px 40px;
}

.luxury-final-cta {
padding:80px 40px;
}
}

@media(max-width:768px) {
.product-detail-section {
padding:40px 20px;
}

.product-main-container {
gap:40px;
}

.product-highlights {
grid-template-columns:repeat(2, 1fr);
}

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

.hero-luxury-title {
font-size:48px;
}

.hero-luxury-subtitle {
font-size:16px;
}

.product-main-info h2 {
font-size:32px;
}

.product-price {
font-size:32px;
}

.elite-testimonials {
padding:60px 20px;
}

.testimonials-grid {
grid-template-columns:1fr;
grid-template-gaps:30px;
}

.luxury-final-cta {
padding:60px 20px;
}

.luxury-final-cta h2 {
font-size:32px;
}
}

/* ===== VERIFY PAGE STYLES ===== */
.verify-container {
text-align:center;
max-width:700px;
margin:0 auto;
padding:60px 40px;
}

.verify-container h2 {
font-family:'Montserrat', sans-serif;
font-size:42px;
font-weight:900;
color:#000;
margin-bottom:15px;
letter-spacing:2px;
}

.verify-subtitle {
font-size:16px;
color:#666;
line-height:1.8;
margin-bottom:50px;
}

.verify-form-wrapper {
display:flex;
flex-direction:column;
gap:20px;
margin-bottom:50px;
}

.verify-input {
padding:18px 25px;
font-size:15px;
border:2px solid #e0e0e0;
border-radius:4px;
background:#fff;
color:#333;
font-family:'Work Sans', sans-serif;
letter-spacing:1px;
text-transform:uppercase;
transition:all 0.3s ease;
}

.verify-input:focus {
outline:none;
border-color:#d9a44a;
box-shadow:0 0 15px rgba(217, 164, 74, 0.15);
}

.verify-input::placeholder {
color:#999;
text-transform:none;
}

.verify-result {
margin-top:40px;
padding:30px;
border-radius:4px;
font-size:15px;
line-height:1.8;
display:none;
}

.verify-result.success {
background:#f0f9f0;
border:2px solid #4ade80;
color:#166534;
display:block;
}

.verify-result.error {
background:#fef2f2;
border:2px solid #ef4444;
color:#991b1b;
display:block;
}

.verify-benefits-section {
padding:100px 0;
text-align:center;
}

.verify-benefits-section h3 {
font-family:'Montserrat', sans-serif;
font-size:42px;
font-weight:900;
color:#000;
margin-bottom:60px;
letter-spacing:2px;
}
