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

body{
font-family:Montserrat,sans-serif;
background:#fdf3f8;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
position:sticky;
top:0;
z-index:999;
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 0;
}

.logo h1{
font-family:'Cormorant Garamond',serif;
font-size:42px;
}

.logo span{
color:#ff3fa0;
}

.logo p{
font-size:18px;
}

nav{
display:flex;
gap:25px;
}

/* WHY TITO CAKES */

.why-tito{
    padding:100px 0;
    background:#fff;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-tag{
    color:#ff1493;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    line-height:1.2;
    margin-bottom:15px;
}

.section-header h2 span{
    color:#ff4fa0;
    font-style:italic;
}

.section-subtitle{
    font-size:18px;
    color:#666;
    line-height:1.7;
}

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

.feature-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(255,20,147,.15);
}

.feature-card img{
    width:100%;
    height:150px;
    object-fit:cover;
    display:block;
}

.feature-content{
    padding:20px;
}

.feature-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    margin-bottom:10px;
    color:#111;
}

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

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.btn-quote{
    background:linear-gradient(135deg,#ff5db1,#ff1493);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
}

.btn-whatsapp{
    background:#25d366;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
}

@media(max-width:992px){

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

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

@media(max-width:768px){

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

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

    .feature-card img{
        height:180px;
    }
}
</section>

nav a{
text-decoration:none;
color:#333;
font-size:14px;
}

.btn-primary{
background:#ff1493;
color:white;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.btn-outline{
border:1px solid #111;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
color:#111;
}

.hero{
padding:80px 0;
}

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

.small-title{
letter-spacing:4px;
color:#ff1493;
font-size:13px;
margin-bottom:20px;
}

.hero h2{
font-family:'Cormorant Garamond',serif;
font-size:72px;
line-height:1.1;
}

.hero h2 span{
display:block;
color:#ff5fb8;
font-style:italic;
}

.hero-desc{
margin-top:25px;
font-size:18px;
line-height:1.8;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:20px;
}

.hero-image{
position:relative;
}

.hero-image img{
width:100%;
border-radius:30px;
}

.price-badge{
position:absolute;
top:20px;
right:20px;
background:#ff1493;
color:white;
width:120px;
height:120px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;
}

.supermarket-banner{
background:#160913;
padding:40px 0;
color:white;
}

.banner-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.banner-content h3{
font-size:36px;
font-family:'Cormorant Garamond',serif;
}

.banner-content a{
background:#29d35f;
padding:15px 30px;
border-radius:40px;
color:white;
text-decoration:none;
}

@media(max-width:768px){

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

.hero h2{
font-size:50px;
}

nav{
display:none;
}

.banner-content{
flex-direction:column;
text-align:center;
}

}

.dropdown{
position:relative;
display:inline-block;
}

.dropbtn{
background:none;
border:none;
font-size:14px;
color:#333;
cursor:pointer;
font-family:Montserrat,sans-serif;
}

.dropdown-content{
display:none;
position:absolute;
top:100%;
left:0;
background:white;
min-width:220px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
overflow:hidden;
z-index:9999;
}

.dropdown-content a{
display:block;
padding:14px 20px;
text-decoration:none;
color:#333;
font-size:14px;
transition:0.3s;
}

.dropdown-content a:hover{
background:#fff0f7;
color:#ff1493;
}

.dropdown:hover .dropdown-content{
display:block;
}

.dropdown:hover .dropbtn{
color:#ff1493;
}

.testimonials{
padding:100px 0;
background:#fff5fa;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.testimonial{
background:white;
padding:35px;
border-radius:20px;
line-height:1.8;
}

.testimonial h4{
margin-top:20px;
}

.faq{
padding:100px 0;
}

.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.faq h2{
font-family:'Cormorant Garamond',serif;
font-size:60px;
margin-bottom:20px;
}

.faq span{
color:#ff1493;
font-style:italic;
}

details{
background:white;
padding:20px;
margin-bottom:15px;
border-radius:15px;
}

summary{
cursor:pointer;
font-weight:600;
}

.instagram{
padding:120px 0;
background:#fff5fa;
text-align:center;
}

.instagram h2{
font-family:'Cormorant Garamond',serif;
font-size:60px;
margin:20px 0;
}

footer{
background:#160913;
color:white;
padding:80px 0 20px;
}

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

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

.footer-grid li{
margin-bottom:10px;
}

.footer-grid a{
color:white;
text-decoration:none;
}

.copyright{
text-align:center;
padding-top:40px;
opacity:.7;
}

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
color:white;
box-shadow:0 10px 30px rgba(0,0,0,.2);
z-index:999;
}

@media(max-width:768px){

.testimonial-grid,
.faq-grid,
.footer-grid{
grid-template-columns:1fr;
}

.instagram h2,
.faq h2{
font-size:40px;
}

}
.instagram-section{
    background:#fff4f8;
    padding:120px 20px;
    text-align:center;
}

.instagram-icon{
    font-size:40px;
    color:#ff3f9e;
    margin-bottom:20px;
}

.instagram-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    font-weight:500;
    color:#1c1015;
}

.instagram-section h2 span{
    color:#ff4ea8;
    font-style:italic;
}

.instagram-text{
    max-width:650px;
    margin:20px auto;
    color:#666;
    font-size:18px;
}

.instagram-btn{
    display:inline-block;
    margin-top:20px;
    background:linear-gradient(90deg,#ff5ab6,#ff008c);
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-weight:600;
    letter-spacing:2px;
}

.location-text{
    margin-top:30px;
    color:#777;
}

.main-footer{
    background:#180c14;
    color:white;
    padding:90px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-about h3{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
}

.footer-about span{
    color:#ff4ea8;
}

.footer-tagline{
    color:#d7a63c;
    letter-spacing:3px;
    font-size:12px;
    margin-bottom:25px;
}

.main-footer h4{
    margin-bottom:25px;
    color:white;
    letter-spacing:1px;
}

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

.main-footer li{
    margin-bottom:14px;
}

.main-footer a{
    color:#d8d8d8;
    text-decoration:none;
}

.contact-list li{
    color:#d8d8d8;
}

.footer-whatsapp{
    display:inline-block;
    margin-top:25px;
    background:#27d366;
    color:white !important;
    padding:15px 28px;
    border-radius:35px;
    text-decoration:none;
    font-weight:600;
}

.footer-bottom{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:25px;
    color:#999;
}

@media(max-width:768px){

    .instagram-section h2{
        font-size:42px;
    }

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

}
.faq-description{
margin:20px 0 35px;
line-height:1.8;
color:#666;
}

.faq-button{
margin-top:30px;
}

.faq-button .btn-primary{
display:inline-block;
}
.birthday-feature{
padding:100px 0;
background:#fdf3f8;
}

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

.birthday-image{
position:relative;
}

.birthday-image img{
width:100%;
border-radius:30px;
display:block;
}

.birthday-price{
position:absolute;
bottom:-20px;
right:-20px;
background:#ff3fa0;
color:white;
padding:18px 25px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.birthday-price span{
font-size:11px;
letter-spacing:2px;
display:block;
}

.birthday-price h4{
font-size:32px;
margin-top:5px;
}

.birthday-content h2{
font-family:'Cormorant Garamond',serif;
font-size:65px;
line-height:1.15;
margin-bottom:25px;
}

.birthday-content h2 span{
color:#ff4ea3;
}

.birthday-content h2 em{
font-style:italic;
color:#ff4ea3;
}

.birthday-text{
font-size:20px;
line-height:1.8;
color:#666;
margin-bottom:35px;
}

.birthday-buttons{
display:flex;
gap:20px;
margin-bottom:25px;
flex-wrap:wrap;
}

.whatsapp-btn{
background:#25D366;
color:white;
padding:16px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.delivery-note{
color:#777;
font-size:16px;
}

@media(max-width:768px){

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

.birthday-content h2{
font-size:42px;
}

.birthday-price{
right:10px;
bottom:10px;
}

}
.trust-section{
    max-width:1200px;
    margin:auto;
    background:linear-gradient(135deg,#ff1493,#d10072,#8b004d);
    border-radius:30px;
    padding:30px 50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    overflow:hidden;
    position:relative;
    box-shadow:0 25px 60px rgba(255,20,147,.35);
}

.trust-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    right:-100px;
}

.cake-image{
    flex:1;
    text-align:center;
}

.cake-image img{
    max-width:100%;
    width:420px;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.25));
    transform:rotate(-3deg);
    transition:.4s;
}

.cake-image img:hover{
    transform:rotate(0deg) scale(1.05);
}

.content-area{
    flex:1;
    color:#fff;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:15px;
}

.heading{
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
}

.heading span{
    color:#ffe6f5;
}

.description{
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    padding:16px 34px;
    background:#fff;
    color:#d10072;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 30px rgba(255,255,255,.25);
}

.cta-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .trust-section{
        flex-direction:column;
        text-align:center;
        padding:35px 25px;
    }

    .cake-image img{
        width:280px;
    }

    .heading{
        font-size:30px;
    }
}
.cake-categories{
padding:100px 0;
background:#fff;
}

.section-title{
margin-bottom:50px;
}

.section-title h2{
font-family:'Cormorant Garamond',serif;
font-size:60px;
font-weight:500;
}

.section-title h2 span{
color:#ff4fa0;
font-style:italic;
}

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

.card{
position:relative;
height:520px;
border-radius:25px;
overflow:hidden;
cursor:pointer;
}

.card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.4s;
}

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

.overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:30px;
background:linear-gradient(
to top,
rgba(0,0,0,.85),
rgba(0,0,0,.4),
transparent
);
color:white;
}

.overlay span{
font-size:12px;
letter-spacing:3px;
color:#ffb347;
font-weight:600;
}

.overlay h3{
font-family:'Cormorant Garamond',serif;
font-size:42px;
margin:10px 0;
}

.overlay p{
font-size:16px;
line-height:1.6;
}

@media(max-width:992px){
.cake-grid{
grid-template-columns:repeat(2,1fr);
}
}

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

.card{
height:450px;
}

.section-title h2{
font-size:42px;
}
}
body{
}