:root{
--bg:#fbf7f1;
--dark:#161313;
--muted:#756c63;
--gold:#c69b5f;
--cream:#fffaf3;
--card:#ffffff;
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:Inter,sans-serif;
background:var(--bg);
color:var(--dark);
}

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

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
padding:0 7%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(251,247,241,.88);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(198,155,95,.18);
}

.logo{
display:flex;
align-items:center;
z-index: 1002;
}

.logo img{
height:100px;
width:auto;
display:block;
}

.nav-right{
display:flex;
align-items:center;
gap:18px;
}

.nav-links{
display:flex;
gap:26px;
font-size:14px;
color:var(--muted);
}

.lang-switch{
display:flex;
gap:8px;
}

.lang-btn{
border:none;
cursor:pointer;
padding:10px 14px;
border-radius:999px;
background:#fff;
font-weight:700;
font-size:13px;
transition:.2s;
}

.lang-btn.active{
background:var(--dark);
color:#fff;
}

.nav-cta{
padding:12px 20px;
border-radius:999px;
background:var(--dark);
color:#fff;
font-size:14px;
font-weight:600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1001;
}

.mobile-menu-toggle span {
display: block;
width: 25px;
height: 3px;
background: var(--dark);
border-radius: 3px;
transition: all 0.3s ease;
}

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

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

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

/* Hero section - INDEX page (grid layout with 2 columns) */
.hero{
min-height:100vh;
padding:150px 7% 80px;
display:grid;
grid-template-columns:1.05fr .95fr;
gap:60px;
align-items:center;
}

/* Hero section - PRODUCTS page (centered single column) */
body.products-page .hero {
padding:150px 7% 80px;
display:block;
text-align:center;
min-height:auto;
grid-template-columns:1fr;
}

.eyebrow{
color:var(--gold);
text-transform:uppercase;
letter-spacing:2px;
font-size:13px;
font-weight:700;
margin-bottom:18px;
}

.hero h1{
font-family:"Playfair Display",serif;
font-size:clamp(48px,7vw,92px);
line-height:.98;
margin-bottom:26px;
}

.hero p{
max-width:560px;
font-size:18px;
line-height:1.8;
color:var(--muted);
margin-bottom:34px;
}

.hero-actions{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:0 26px;
min-height:52px;
border-radius:999px;
font-weight:700;
transition:.2s;
position:relative;
overflow:hidden;
z-index:1;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(22,19,19,.15);
}

.btn i{
margin-right:10px;
font-size:20px;
}

.btn-primary{
background:var(--dark);
color:#fff;
}

.btn-secondary{
background:#fff;
border:1px solid rgba(0,0,0,.1);
}

.btn-instagram{
background:linear-gradient(135deg,#833ab4 0%,#fd1d1d 50%,#fcb045 100%);
color:#fff;
border:none;
position:relative;
overflow:hidden;
}

.btn-instagram::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(135deg,#405de6 0%,#5851db 25%,#833ab4 50%,#c13584 75%,#e1306c 100%);
transition:left .3s ease;
z-index:-1;
}

.btn-instagram:hover::before{
left:0;
}

.btn-facebook{
background:#1877f2;
color:#fff;
border:none;
position:relative;
overflow:hidden;
}

.btn-facebook::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:#145dbf;
transition:left .3s ease;
z-index:-1;
}

.btn-facebook:hover::before{
left:0;
}

.hero-card{
min-height:640px;
border-radius:42px;
overflow:hidden;
background:
linear-gradient(180deg,rgba(22,19,19,.02),rgba(22,19,19,.52)),
url("images/bags/aurea-large4.webp");
background-size:cover;
background-position:center;
box-shadow:0 30px 90px rgba(22,19,19,.18);
}

.hero-visual{
position:relative;
}

.floating-badge{
position:absolute;
top:5%;
right:5%;
background:#fff;
padding:22px 24px;
border-radius:24px;
width:min(230px, 40%);
max-width:230px;
box-shadow:0 22px 60px rgba(22,19,19,.14);
}

.floating-badge strong{
display:block;
font-family:"Playfair Display",serif;
font-size:25px;
margin-bottom:6px;
}

.floating-badge span{
font-size:14px;
line-height:1.5;
color:var(--muted);
}

section{
padding:90px 7%;
}

.about{
background:var(--cream);
}

.about-grid{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:50px;
align-items:center;
}

.about-image{
height:520px;
border-radius:36px;
background:url("images/bags/nera1.webp");
background-size:cover;
background-position:center;
}

.about-content h2,
.section-head h2,
.video-copy h2,
.cta h2{
font-family:"Playfair Display",serif;
}

.about-content h2{
font-size:54px;
margin-bottom:20px;
}

.about-content p,
.section-head p,
.video-copy p,
.cta p{
color:var(--muted);
line-height:1.8;
font-size:17px;
}

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-top:34px;
}

.stat{
padding:24px;
border-radius:24px;
background:#fff;
}

.stat strong{
display:block;
font-size:28px;
font-family:"Playfair Display",serif;
}

.stat span{
font-size:13px;
color:var(--muted);
}

.section-head{
max-width:760px;
margin-bottom:44px;
}

.section-head h2{
font-size:clamp(34px,5vw,58px);
margin-bottom:16px;
}

.products-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.product{
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 18px 50px rgba(22,19,19,.07);
transition:.2s;
}

.product:hover{
transform:translateY(-8px);
}

.product-image{
height:360px;
background-size:cover;
background-position:center;
}

.p1{background-image:url("images/bags/aria2.webp");}
.p2{background-image:url("images/bags/solena1.webp");}
.p3{background-image:url("images/bags/noir-mini2.webp");}

.product-info{
padding:24px;
}

.product-info h3{
font-family:"Playfair Display",serif;
font-size:27px;
margin-bottom:8px;
}

.product-info p{
font-size:15px;
line-height:1.6;
color:var(--muted);
}

.video-section{
background:var(--dark);
color:#fff;
}

.video-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:46px;
align-items:center;
}

.video-placeholder{
min-height:520px;
border-radius:36px;
overflow:hidden;
position:relative;
box-shadow:0 30px 90px rgba(0,0,0,.4);
transition:transform .3s ease;
}

.video-placeholder:hover{
transform:scale(1.02);
box-shadow:0 40px 100px rgba(0,0,0,.5);
}

.video-placeholder video{
width:100%;
height:100%;
min-height:520px;
object-fit:cover;
display:block;
border-radius:36px;
}

.video-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.5));
display:flex;
align-items:center;
justify-content:center;
opacity:1;
transition:opacity .3s ease;
pointer-events:none;
z-index:2;
}

.video-placeholder.playing .video-overlay{
opacity:0;
}

.custom-play-btn{
width:90px;
height:90px;
background:rgba(255,255,255,.95);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:all .3s ease;
box-shadow:0 10px 40px rgba(0,0,0,.3);
pointer-events:all;
}

.custom-play-btn:hover{
transform:scale(1.1);
background:#fff;
box-shadow:0 15px 50px rgba(0,0,0,.4);
}

.custom-play-btn::after{
content:'';
width:0;
height:0;
border-left:25px solid var(--dark);
border-top:15px solid transparent;
border-bottom:15px solid transparent;
margin-left:6px;
}

.video-copy h2{
font-size:58px;
margin-bottom:20px;
}

.video-copy p{
color:rgba(255,255,255,.72);
margin-bottom:28px;
}

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

.feature{
background:#fff;
padding:32px;
border-radius:28px;
min-height:190px;
}

.feature span{
font-size:34px;
}

.feature h3{
margin:18px 0 10px;
font-size:18px;
}

.feature p{
font-size:14px;
line-height:1.6;
color:var(--muted);
}

.cta{
text-align:center;
background:
linear-gradient(rgba(251,247,241,.88),rgba(251,247,241,.88)),
url("https://images.unsplash.com/photo-1603791440384-56cd371ee9a7?auto=format&fit=crop&w=1400&q=90");
background-size:cover;
background-position:center;
}

.cta h2{
font-size:clamp(38px,6vw,72px);
max-width:820px;
margin:0 auto 22px;
}

.cta p{
max-width:640px;
margin:0 auto 34px;
}

footer{
padding:36px 7%;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
background:var(--dark);
color:rgba(255,255,255,.74);
font-size:14px;
}

.footer-left{
display:flex;
flex-direction:column;
gap:8px;
}

.footer-credit{
font-size:12px;
opacity:.6;
transition:opacity .2s ease;
}

.footer-credit a{
color:rgba(255,255,255,.8);
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,.2);
transition:all .2s ease;
}

.footer-credit a:hover{
color:#fff;
border-bottom-color:rgba(255,255,255,.6);
}

.socials{
display:flex;
gap:16px;
}

.socials a{
display:inline-flex;
align-items:center;
gap:6px;
transition:color .2s ease;
}

.socials a:hover{
color:#fff;
}

.socials a i{
font-size:16px;
}

@media(max-width:950px){

.nav-links{
display:none;
}

.hero,
.about-grid,
.video-wrap{
grid-template-columns:1fr;
}

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

.hero-card{
min-height:520px;
}

.floating-badge{
top:5%;
right:3%;
width:min(200px, 45%);
padding:18px 20px;
}

.floating-badge strong{
font-size:22px;
}

.floating-badge span{
font-size:13px;
}

.hero{
padding-top:130px;
}
}

@media(max-width:768px){

.mobile-menu-toggle {
display: flex;
}

.nav-right{
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: rgba(251, 247, 241, 0.98);
backdrop-filter: blur(20px);
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0;
transition: right 0.3s ease;
z-index: 1000;
}

.nav-right.active {
right: 0;
}

.nav-links {
display: flex !important;
flex-direction: column;
gap: 35px;
font-size: 18px;
text-align: center;
margin-bottom: 30px;
}

.nav-links a {
display: block;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease;
}

.nav-right.active .nav-links a {
opacity: 1;
transform: translateY(0);
}

.nav-right.active .nav-links a:nth-child(1) { transition-delay: 0.1s; }
.nav-right.active .nav-links a:nth-child(2) { transition-delay: 0.15s; }
.nav-right.active .nav-links a:nth-child(3) { transition-delay: 0.2s; }
.nav-right.active .nav-links a:nth-child(4) { transition-delay: 0.25s; }
.nav-right.active .nav-links a:nth-child(5) { transition-delay: 0.3s; }
.nav-right.active .nav-links a:nth-child(6) { transition-delay: 0.35s; }

.lang-switch {
display: flex;
margin-top: 20px;
}

.floating-badge{
top:5%;
right:3%;
width:min(180px, 50%);
padding:16px 18px;
}

.floating-badge strong{
font-size:20px;
}

.floating-badge span{
font-size:12px;
}

.video-placeholder{
min-height:400px;
}

.video-placeholder video{
min-height:400px;
}

.custom-play-btn{
width:70px;
height:70px;
}

.custom-play-btn::after{
border-left:20px solid var(--dark);
border-top:12px solid transparent;
border-bottom:12px solid transparent;
margin-left:5px;
}

.video-copy h2{
font-size:42px;
}
}

@media(max-width:560px){

.navbar{
padding:5px 5%;
gap:8px;
}

.mobile-menu-toggle {
display: flex;
position: relative;
z-index: 1001;
}

.nav-right{
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: rgba(251, 247, 241, 0.98);
backdrop-filter: blur(20px);
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0;
transition: right 0.3s ease;
z-index: 1000;
}

.nav-right.active {
right: 0;
}

.nav-links {
display: flex !important;
flex-direction: column;
gap: 30px;
font-size: 20px;
text-align: center;
margin-bottom: 30px;
}

.nav-links a {
display: block;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease;
}

.nav-right.active .nav-links a {
opacity: 1;
transform: translateY(0);
}

.nav-right.active .nav-links a:nth-child(1) { transition-delay: 0.1s; }
.nav-right.active .nav-links a:nth-child(2) { transition-delay: 0.15s; }
.nav-right.active .nav-links a:nth-child(3) { transition-delay: 0.2s; }
.nav-right.active .nav-links a:nth-child(4) { transition-delay: 0.25s; }
.nav-right.active .nav-links a:nth-child(5) { transition-delay: 0.3s; }
.nav-right.active .nav-links a:nth-child(6) { transition-delay: 0.35s; }

.lang-switch {
display: flex;
margin-top: 20px;
}

.mobile-menu-toggle {
display: flex;
position: relative;
z-index: 1001;
}

.logo img{
height:80px;
}

.hero,
section{
padding-left:5%;
padding-right:5%;
}

.hero h1{
font-size:48px;
}

.about-content h2,
.video-copy h2{
font-size:40px;
}

.hero-card{
min-height:430px;
border-radius:28px;
}

.floating-badge{
top:3%;
right:2%;
width:min(160px, 45%);
padding:14px 16px;
}

.floating-badge strong{
font-size:18px;
margin-bottom:4px;
}

.floating-badge span{
font-size:11px;
}

.video-placeholder{
min-height:300px;
border-radius:24px;
}

.video-placeholder video{
min-height:300px;
border-radius:24px;
}

.custom-play-btn{
width:60px;
height:60px;
}

.custom-play-btn::after{
border-left:18px solid var(--dark);
border-top:11px solid transparent;
border-bottom:11px solid transparent;
margin-left:4px;
}
}
/* ===== NEW PAGES STYLES ===== */

/* Page Hero */
.page-hero{
padding:150px 7% 80px;
text-align:center;
background:linear-gradient(180deg,var(--cream),var(--bg));
}

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

.page-hero h1{
font-family:"Playfair Display",serif;
font-size:clamp(48px,6vw,72px);
line-height:1.1;
margin-bottom:20px;
}

.page-hero p{
font-size:18px;
color:var(--muted);
line-height:1.8;
max-width:680px;
margin:0 auto;
}

/* Product Catalog */
.product-catalog{
padding:60px 7%;
}

.product-detail{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:60px 0;
border-bottom:1px solid rgba(0,0,0,.08);
}

.product-detail:last-child{
border-bottom:none;
}

/* Professional Product Gallery with Main Image + Thumbnails */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  max-width: 100%;
}

.product-gallery-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  background: #f5f5f5;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-gallery-thumb:hover {
  border-color: #c69b5f;
  transform: translateY(-2px);
}

.product-gallery-thumb.active {
  border-color: #c69b5f;
  box-shadow: 0 4px 12px rgba(198, 155, 95, 0.3);
}

.product-gallery-thumb:hover img {
  opacity: 0.8;
}

.product-description h2{
font-family:"Playfair Display",serif;
font-size:38px;
margin-bottom:10px;
}

.product-price{
font-size:32px;
font-weight:700;
color:var(--gold);
margin-bottom:20px;
}

.product-intro{
font-size:17px;
line-height:1.8;
color:var(--muted);
margin-bottom:30px;
}

.product-specs{
background:var(--cream);
padding:30px;
border-radius:20px;
margin-bottom:30px;
}

.product-specs h3{
font-size:20px;
margin-bottom:15px;
}

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

.product-specs li{
padding:10px 0;
border-bottom:1px solid rgba(0,0,0,.06);
font-size:16px;
line-height:1.6;
}

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

/* Gallery Styles */
.gallery-filter{
padding:40px 7%;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.filter-btn{
padding:12px 24px;
border:2px solid var(--dark);
background:transparent;
border-radius:999px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
background:var(--dark);
color:#fff;
}

.gallery-grid{
padding:40px 7%;
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:30px;
}

.gallery-item{
position:relative;
transition:.3s;
}

.gallery-image{
position:relative;
border-radius:20px;
overflow:hidden;
aspect-ratio:4/5;
}

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

.gallery-overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.85));
display:flex;
align-items:flex-end;
opacity:0;
transition:.3s;
}

.gallery-item:hover .gallery-overlay{
opacity:1;
}

.gallery-item:hover .gallery-image img{
transform:scale(1.08);
}

.gallery-info{
padding:25px;
color:#fff;
}

.gallery-info h3{
font-size:22px;
margin-bottom:8px;
}

.gallery-price{
font-size:20px;
font-weight:700;
color:var(--gold);
margin-bottom:8px;
}

.gallery-cta{
display:inline-block;
padding:10px 20px;
background:#fff;
color:var(--dark);
border-radius:999px;
font-size:14px;
font-weight:600;
margin-top:10px;
}

.gallery-link{
display:block;
}

/* About Page Styles */
.about-story{
padding:80px 7%;
}

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

.story-content h2{
font-size:48px;
margin-bottom:25px;
}

.story-content p{
font-size:17px;
line-height:1.8;
color:var(--muted);
margin-bottom:20px;
}

.story-image img{
width:100%;
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.about-values{
padding:80px 7%;
background:var(--cream);
}

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

.value-card{
background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 8px 30px rgba(0,0,0,.06);
transition:.3s;
}

.value-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 45px rgba(0,0,0,.1);
}

.value-icon{
font-size:42px;
color:var(--gold);
margin-bottom:20px;
}

.value-card h3{
font-size:22px;
margin-bottom:12px;
}

.value-card p{
font-size:16px;
line-height:1.7;
color:var(--muted);
}

.about-process{
padding:80px 7%;
}

.process-timeline{
max-width:900px;
margin:50px auto 0;
}

.timeline-item{
display:grid;
grid-template-columns:80px 1fr;
gap:30px;
padding:40px 0;
border-bottom:1px solid rgba(0,0,0,.08);
}

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

.timeline-number{
width:80px;
height:80px;
border-radius:50%;
background:var(--gold);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:700;
}

.timeline-content h3{
font-size:24px;
margin-bottom:12px;
}

.timeline-content p{
font-size:16px;
line-height:1.8;
color:var(--muted);
}

.about-why{
padding:80px 7%;
background:var(--cream);
}

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

.why-image img{
width:100%;
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.why-content h2{
font-size:42px;
margin-bottom:30px;
}

.why-list{
list-style:none;
padding:0;
margin-bottom:30px;
}

.why-list li{
display:flex;
gap:15px;
padding:15px 0;
border-bottom:1px solid rgba(0,0,0,.06);
}

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

.why-list i{
color:var(--gold);
font-size:24px;
flex-shrink:0;
}

.why-list strong{
display:block;
font-size:18px;
margin-bottom:5px;
}

.why-list span{
font-size:15px;
color:var(--muted);
}

.testimonials{
padding:80px 7%;
}

.testimonials-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:50px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.testimonial-stars{
color:var(--gold);
margin-bottom:20px;
font-size:18px;
}

.testimonial-card p{
font-size:17px;
line-height:1.7;
color:var(--dark);
margin-bottom:20px;
font-style:italic;
}

.testimonial-author strong{
display:block;
font-size:18px;
margin-bottom:5px;
}

.testimonial-author span{
font-size:14px;
color:var(--muted);
}

/* Materials Page Styles */
.materials-types{
padding:80px 7%;
}

.material-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:50px;
}

.material-card{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 8px 30px rgba(0,0,0,.06);
transition:.3s;
}

.material-card.highlighted{
background:linear-gradient(135deg,#fffcf7,#fff9ed);
border:2px solid var(--gold);
}

.material-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 45px rgba(0,0,0,.1);
}

.material-icon{
font-size:48px;
color:var(--gold);
margin-bottom:20px;
}

.material-card h3{
font-size:24px;
margin-bottom:15px;
}

.material-card p{
font-size:16px;
line-height:1.7;
color:var(--muted);
margin-bottom:20px;
}

.material-features{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-bottom:20px;
}

.feature-tag{
padding:8px 16px;
background:var(--cream);
border-radius:999px;
font-size:13px;
font-weight:600;
color:var(--dark);
}

.material-models{
padding-top:20px;
border-top:1px solid rgba(0,0,0,.08);
}

.material-models strong{
display:block;
font-size:14px;
margin-bottom:8px;
color:var(--dark);
}

.material-models span{
font-size:15px;
color:var(--muted);
}

.color-palettes{
padding:80px 7%;
background:var(--cream);
}

.palette-section{
margin-top:50px;
padding:40px;
background:#fff;
border-radius:24px;
box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.palette-section h3{
font-size:28px;
margin-bottom:10px;
}

.palette-section p{
font-size:16px;
color:var(--muted);
margin-bottom:25px;
}

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

.palette-images img{
width:100%;
border-radius:16px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
transition:.3s;
}

.palette-images img:hover{
transform:scale(1.03);
box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.customization-options{
padding:80px 7%;
}

.options-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.option-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 6px 20px rgba(0,0,0,.06);
text-align:center;
transition:.3s;
}

.option-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 35px rgba(0,0,0,.1);
}

.option-icon{
font-size:40px;
color:var(--gold);
margin-bottom:15px;
}

.option-card h3{
font-size:20px;
margin-bottom:10px;
}

.option-card p{
font-size:15px;
line-height:1.7;
color:var(--muted);
}

.care-instructions{
padding:80px 7%;
background:var(--cream);
}

.care-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.care-item{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 6px 20px rgba(0,0,0,.06);
text-align:center;
}

.care-item i{
font-size:42px;
color:var(--gold);
margin-bottom:15px;
}

.care-item h3{
font-size:20px;
margin-bottom:12px;
}

.care-item p{
font-size:15px;
line-height:1.7;
color:var(--muted);
}

/* Responsive Styles for New Pages */
@media(max-width:1024px){
.product-detail,
.story-grid,
.why-grid{
grid-template-columns:1fr;
gap:40px;
}

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

@media(max-width:768px){
.page-hero{
padding:130px 5% 60px;
}

.product-catalog{
padding:40px 5%;
}

.product-detail{
padding:40px 0;
grid-template-columns: 1fr;
gap: 30px;
}

.product-gallery{
gap: 12px;
}

.product-gallery-main {
border-radius: 16px;
}

.product-gallery-thumbs {
grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
gap: 8px;
}

.product-gallery-thumb {
border-radius: 8px;
border-width: 2px;
}

.gallery-grid{
padding:30px 5%;
grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
gap:20px;
}

.about-story,
.about-values,
.about-process,
.about-why,
.testimonials,
.materials-types,
.color-palettes,
.customization-options,
.care-instructions{
padding:60px 5%;
}

.timeline-item{
grid-template-columns:60px 1fr;
gap:20px;
padding:30px 0;
}

.timeline-number{
width:60px;
height:60px;
font-size:22px;
}

.values-grid,
.testimonials-grid,
.material-cards,
.options-grid,
.care-grid{
grid-template-columns:1fr;
}
}

/* ============================================
   ORDER MODAL STYLES
   =========================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 35px;
  border-bottom: 1px solid #e8e8e8;
  background: linear-gradient(135deg, #c69b5f 0%, #d4af7a 100%);
  border-radius: 24px 24px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-header h2 i {
  font-size: 24px;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 35px;
}

/* Product Summary */
.product-summary {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 16px;
  margin-bottom: 30px;
  align-items: center;
}

.product-summary-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary-info h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #2c2c2c;
}

.product-summary-price {
  font-size: 24px;
  font-weight: 700;
  color: #c69b5f;
  margin: 0;
}

/* Order Form */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: #c69b5f;
  font-size: 14px;
}

.required {
  color: #e74c3c;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c69b5f;
  box-shadow: 0 0 0 4px rgba(198, 155, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

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

/* Form Actions */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.form-actions .btn {
  flex: 1;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-secondary {
  background: #f0f0f0;
  color: #666;
}

.btn-secondary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #c69b5f 0%, #d4af7a 100%);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b88a4e 0%, #c69b5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 155, 95, 0.3);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Order Message */
.order-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 14px;
  display: none;
}

.order-message.error {
  display: block;
  background: #fee;
  color: #c33;
  border: 1px solid #fcc;
}

.order-message.success {
  display: block;
  background: #efe;
  color: #3c3;
  border: 1px solid #cfc;
}

/* Success Screen */
.order-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon i {
  font-size: 42px;
  color: #fff;
}

.order-success h3 {
  font-size: 28px;
  color: #2c2c2c;
  margin: 0 0 15px 0;
}

.order-success p {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
}

.order-success .btn {
  padding: 14px 35px;
  font-size: 16px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 100%;
    border-radius: 16px;
    max-height: 95vh;
  }

  .modal-header {
    padding: 20px 25px;
    border-radius: 16px 16px 0 0;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .modal-body {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-summary {
    flex-direction: column;
    text-align: center;
  }

  .product-summary-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

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

  .form-actions .btn {
    width: 100%;
  }
}

/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(198, 155, 95, 0.15);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card-content {
  padding: 20px;
  text-align: center;
}

.product-card-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.product-card-price {
  font-size: 24px;
  font-weight: 700;
  color: #c69b5f;
  margin-bottom: 15px;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c69b5f;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.product-card:hover .product-card-btn {
  gap: 12px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #c69b5f;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb span {
  margin: 0 8px;
  color: #999;
}

/* Product Detail Page */
.product-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Color Palette Button */
.color-palette-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #c69b5f 0%, #d4af7a 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
  vertical-align: middle;
}

.color-palette-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 155, 95, 0.3);
}

.color-palette-btn i {
  font-size: 12px;
}

/* Color Palette Modal */
.color-palette-modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.color-palette-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.color-palette-content {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.color-palette-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 2px solid #e8e8e8;
  background: linear-gradient(135deg, #c69b5f 0%, #d4af7a 100%);
  border-radius: 24px 24px 0 0;
}

.color-palette-header h2 {
  margin: 0;
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-palette-header h2 i {
  font-size: 22px;
}

.color-palette-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.color-palette-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.color-palette-body {
  padding: 35px;
}

.color-palette-info {
  text-align: center;
  margin-bottom: 30px;
}

.color-palette-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.color-palette-info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}

.color-palette-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.color-palette-images img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.color-palette-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* Single image takes full width */
.color-palette-images.single-image {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Product Grid */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }

  .product-card-image {
    height: 200px;
  }

  .product-card-content {
    padding: 15px;
  }

  .product-card-content h2 {
    font-size: 16px;
  }

  .product-card-price {
    font-size: 20px;
  }
  
  /* Color Palette Modal - Mobile */
  .color-palette-content {
    max-width: 100%;
    border-radius: 16px;
    max-height: 95vh;
  }
  
  .color-palette-header {
    padding: 20px 20px;
    border-radius: 16px 16px 0 0;
  }
  
  .color-palette-header h2 {
    font-size: 20px;
  }
  
  .color-palette-body {
    padding: 25px 20px;
  }
  
  .color-palette-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .color-palette-btn {
    padding: 5px 12px;
    font-size: 12px;
    margin-left: 8px;
    display: inline-flex;
  }
}
#siena-clutch {
  object-position: 50% 90%;
}
#aurea-medium {
  object-position: 50% 65%;
} 
#nera {
  object-position: 50% 63%;
} 
#marina {
  object-position: 50% 56%;
}
#liora {
  object-position: 50% 60%;
}