:root{
  --black:#111111;
  --soft-black:#1c1c1c;
  --gold:#c7a15a;
  --gold-dark:#b08d57;
  --cream:#f8f6f2;
  --white:#ffffff;
  --text:#333333;
  --muted:#666666;
  --border:#e8e0d2;

  --container:1200px;

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:24px;

  --shadow-sm:0 8px 24px rgba(0,0,0,.06);
  --shadow-md:0 14px 34px rgba(0,0,0,.08);
  --shadow-lg:0 20px 46px rgba(0,0,0,.12);

  --transition:all .3s ease;
}

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

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
  height:auto;
}

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

ul{
  list-style:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6{
  font-family:'Playfair Display',serif;
  color:var(--black);
  line-height:1.15;
}

p{
  color:var(--muted);
}

/* LAYOUT */
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

section{
  position:relative;
}

/* COMMON SECTION HEADERS */
.section-header{
  text-align:center;
  margin-bottom:54px;
}

.section-subtitle{
  display:inline-block;
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:12px;
  font-weight:600;
}

.section-title{
  font-size:clamp(30px,4vw,52px);
  margin-bottom:10px;
  color:var(--black);
}

.section-description{
  max-width:720px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.8;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  padding:14px 28px;
  border-radius:var(--radius-sm);
  border:1px solid transparent;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  transition:var(--transition);
}

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

.btn-primary:hover{
  background:var(--gold-dark);
  transform:translateY(-2px);
}

.btn-secondary{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.45);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.08);
}

.btn-outline{
  background:transparent;
  color:var(--black);
  border:1px solid var(--gold);
}

.btn-outline:hover{
  background:var(--gold);
  color:#fff;
}

.btn-full{
  width:100%;
}

.floating-cta{
    position: fixed;
    left: 20px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta a{
    min-width: 170px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(199,161,90,0.26);
    box-shadow: 0 16px 28px rgba(0,0,0,0.18);
    font-size: 14px;
    font-weight: 600;
}

.floating-cta a:hover{
    background: var(--primary-gold);
    color: #111;
}
.whatsapp-float{
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    z-index: 999;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover{
    transform: translateY(-3px);
}
.seo-intro {
    padding: 50px 0;
    background: #faf8f4;
}

.seo-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.seo-content {
    padding: 80px 0;
    background: #ffffff;
}

.seo-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
    text-align: center;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;

    color: #333;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
    max-width: 850px;
}

.seo-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-products {
    padding: 70px 0;
    background: #fdfaf6;
    text-align: center;
}

.seo-products h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #222;
}

.seo-products p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2,
.seo-products h2 {
    letter-spacing: 0.5px;
}

.seo-content p,
.seo-products p,
.seo-intro p {
    font-family: 'Inter', sans-serif;
}
/* ===============================
BACK TO TOP PREMIUM FLOAT BUTTON
================================ */

#backToTop,
.back-to-top{
    position: fixed !important;
    right: 18px !important;
    bottom: 22px !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    background: #c9a24c !important;
    color: #fff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
    transition: all .3s ease;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#backToTop:hover,
.back-to-top:hover{
    transform: translateY(-4px);
    background:#b88f33 !important;
}

/* MOBILE */
@media(max-width:768px){

#backToTop,
.back-to-top{
    width:54px !important;
    height:54px !important;
    right:16px !important;
    bottom:18px !important;
    font-size:24px !important;
}

}
