*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --orange:#ff7a00;
    --silver:#d8d8d8;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

.page-wrapper{
    min-height:100vh;
    background:
    radial-gradient(circle at center,
    #343434 0%,
    #1a1a1a 40%,
    #000 100%);
}

/* MENU */
.menu-btn{
    position:fixed;
    top:20px;
    left:20px;
    z-index:999;
    background:none;
    border:none;
    color:var(--orange);
    font-size:40px;
    cursor:pointer;
}
/* SIDE MENU */
.side-menu{
    height:100%;
    width:0;
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    background:#111;
    overflow-x:hidden;
    transition:0.4s;
    padding-top:80px;
    border-right:3px solid var(--orange);
}

.side-menu a{
    padding:12px 25px;
    text-decoration:none;
    font-size:18px;
    color:white;
    display:block;
    transition:0.3s;
}

.side-menu a:hover{
    background:var(--orange);
    color:#000;
}
.page-spacer{
    height:120px;
    width:100%;
    display:block;
}
/* CLOSE BUTTON */
.close-btn{
    position:absolute;
    top:10px;
    right:20px;
    font-size:40px;
    color:var(--orange);
}

/* MENU BUTTON (keep but improve layering) */
.menu-btn{
    position:fixed;
    top:20px;
    left:20px;
    z-index:1100;
    background:none;
    border:none;
    color:var(--orange);
    font-size:40px;
    cursor:pointer;
}

/* HERO */
.hero{
    margin-bottom:80px;
    position:relative;
    height:400px;
}

.hero::before{
    content:"";
    position:absolute;
    top:40px;
    left:-5%;
    width:110%;
    height:250px;
    border-radius:50%;
    border:5px solid var(--silver);
    box-shadow:
    0 0 0 3px var(--orange),
    inset 0 0 25px rgba(255,255,255,.2),
    0 0 30px rgba(255,122,0,.4);
}

.hero::after{
    content:"";
    position:absolute;
    top:65px;
    left:5%;
    width:90%;
    height:180px;
    border-radius:50%;
    border-top:4px solid var(--orange);
    opacity:.8;
}

.logo-container{
    position:absolute;
    bottom:-200px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.logo-container img{
    width:clamp(420px, 25vw, 120px);
    height:auto;
}
/* TOP ACTION BUTTONS */
.top-actions{
    width:min(95%,1200px);
    margin:20px auto;
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
}

/* FEATURED TITLE */
.featured-title{
    text-align:center;
    margin:100px 0;
}

.featured-title h1{
    font-size:3rem;
    color:var(--orange);
    letter-spacing:2px;
}

.featured-title p{
    color:#ccc;
}

.product-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border-radius:12px;
}

/* IMAGE FRAME */
.img-box{
    width:100%;
    height:200px;
    overflow:hidden;
    position:relative;
}

/* IMAGE INSIDE FRAME */
.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

/* BUTTON COLORS */
.whatsapp{
    background:linear-gradient(to bottom,#25D366,#128C7E);
    display:block;
    margin-top:10px;
}

.email{
    background:linear-gradient(to bottom,#ffb347,#ff7a00);
    display:block;
    margin-top:10px;
}

/* =========================
   PREMIUM FOOTER STYLING
========================= */

.footer{
    margin-top:100px;
    padding:60px 20px;
    background:
        radial-gradient(circle at top,
        #1a1a1a 0%,
        #0d0d0d 50%,
        #000 100%);

    border-top:2px solid var(--orange);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:40px;

    box-shadow:0 -10px 30px rgba(255,122,0,0.15);
}

/* LOGO SECTION */
.footer-logo{
    flex:1;
    min-width:200px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-logo img{
    width:320px; /* doubled from 160px */
    filter:drop-shadow(0 0 10px rgba(255,122,0,0.4));
}

/* TEXT SECTION */
.footer-info{
    flex:2;
    margin-bottom:-100px;
    min-width:280px;
    color:#ddd;
    line-height:1.8;
}


.footer-info h3{
    color:var(--orange);
    font-size:1.6rem;
    margin-bottom:-10px;
    letter-spacing:1px;
}

.footer-info p{
    font-size:0.95rem;
    
    color:#bbb;
}

/* HIGHLIGHT CONTACT INFO */
.footer-info p:nth-child(3),
.footer-info p:nth-child(4){
    color:#fff;
    font-weight:500;
}

/* RESPONSIVE */
@media(max-width:768px){

    .footer{
        flex-direction:column;
        text-align:center;
    }

    .footer-logo{
        margin-bottom: 10px;
    }
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 30px;
    text-decoration:none;
    color:white;
    background:linear-gradient(to bottom,#ffb347,#ff7a00);
    border-radius:5px;
    margin-top:10px;
}

/* DIVIDER */
.divider{
    width:min(90%,1200px);
    height:35px;
    margin:-100px auto;
    background:linear-gradient(90deg,#666,#fff,#666);
    clip-path:polygon(0 0,50% 100%,100% 0,100% 100%,0 100%);
}

/* PRODUCT GRID */
.product-section{
    width:min(95%,1400px);
    margin:80px auto;
}

.product-section h2{
    color:var(--orange);
    margin-bottom:20px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.product-card{
    background:#151515;
    border:1px solid var(--orange);
    padding:20px;
    border-radius:12px;
    box-shadow:0 0 15px rgba(255,122,0,.2);
}

.product-card h3{
    color:var(--orange);
    margin-bottom:10px;
}

.tag{
    display:inline-block;
    padding:5px 10px;
    font-size:12px;
    margin-bottom:10px;
    border-radius:5px;
}

.instock{background:green;}
.onorder{background:darkred;}

.image-scroll-box{
    display:flex;
    overflow:hidden;
    position:relative;
    border-radius:10px;
}

.image-scroll-box img{
    flex:0 0 100%;
    width:100%;
    height:220px;          /* bigger */
    object-fit:contain;    /* NO cropping */
    background:#111;       /* fills empty space nicely */
    border-radius:10px;
}

.slider{
    position:relative;
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.6);
    color:#ff7a00;
    border:none;
    font-size:24px;
    padding:10px 12px;
    cursor:pointer;
    z-index:10;
    border-radius:50%;
}

.arrow.left{
    left:5px;
}

.arrow.right{
    right:5px;
}

/* TABLET */
@media(max-width:768px){
    .hero{height:500px;}
    .logo-container{top:-120px;}
}

/* MOBILE */
@media(max-width:480px){
    .hero{height:450px;}
    .logo-container{top:-100px;}
}

.product-grid {
    display: flex;
    flex-wrap: wrap; /* allows next row when screen gets smaller */
    gap: 20px; /* space between cards */
    justify-content: center; /* centers all cards */
    align-items: flex-start;
    width: 100%;
    padding: 20px;
}

.product-card {
    flex: 0 0 320px; /* fixed card width */
    max-width: 320px;
    background: rgb(233, 138, 29);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}
.slides {
    width: 100%;
    height: 100%;
}
.slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
}

.slides img {
    width: 100%;
    height: 220px;
    object-fit: fill;
    display: none;
}

.slides img.active {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.product-card h3 {
    color: black;
    margin: 10px 0;
    display: block;
}

.product-card p {
    color: #333;
    margin: 5px 0;
    display: block;
}

.btn.whatsapp {
    background: #25D366 !important;
    color: white !important;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.btn.whatsapp:hover {
    background-color: #1ebe5d;
}

.top-actions {
    display: flex;
    flex-direction: column; /* Keeps them under each other */
    align-items: center;
    gap: 0px;
    width: 100%;
    margin: 10px auto;
    margin-top: -70px;
}

.image-btn {
    display: block;
    width: 90%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.image-btn img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    
}

.whatsapp-btn img{
    width: 70px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: -40px;
}

.catalog-section{
    padding:40px 20px;
}

.catalog-title{
    text-align:center;
    font-size:28px;
    margin-bottom:20px;
}

.catalog-wrapper{
    max-width:500px;
    margin:auto;
    position:relative;
}

/* PRODUCT CARD */
.catalog-item{
    display:none;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    text-align:center;
}

.catalog-item.active{
    display:block;
}

/* IMAGE FIX (NO CROPPING EVER) */
.img-box{
    width:100%;
    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    border-radius:10px;
    overflow:hidden;
}

.img-box img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

/* INFO */
.info p{
    margin:5px 0;
    font-size:14px;
}

/* BUTTONS */
.btn{
    display:inline-block;
    padding:8px 12px;
    margin-top:10px;
    border-radius:6px;
    color:#fff;
    text-decoration:none;
}

.btn.whatsapp{ background:#25D366; }
.btn.email{ background:#333; }

/* NAV BUTTONS */
.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.5);
    color:#fff;
    border:none;
    padding:10px;
    cursor:pointer;
    border-radius:50%;
    z-index:10;
}

.nav-btn.prev{ left:-15px; }
.nav-btn.next{ right:-15px; }

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial;
    background: #fff;
}

.pf-section {
    width: 100%;
    padding: 40px 20px;
}

/* Title */
.pf-title {
    text-align: center;
    color: #ff7a00;
    margin-bottom: 30px;
    font-size: 28px;
}

/* =========================
   GRID (CENTERS EVERYTHING)
========================= */
.pf-grid {
    display: grid;

    /* Auto-fit makes cards go next to each other */
    grid-template-columns: repeat(auto-fit, minmax(320px, 360px));

    justify-content: center;  /* 🔥 THIS CENTERS THE WHOLE GRID */
    align-items: start;

    gap: 25px;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* 🔥 CENTERS THE GRID ON PAGE */
}

/* =========================
   CARD DESIGN
========================= */
.pf-card {
    background: #fff;
    border: 2px solid #ff7a00;
    border-radius: 12px;
    padding: 15px;

    color: black;

    width: 100%;
    max-width: 360px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE SLIDER
========================= */
.pf-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.pf-slides {
    position: relative;
    width: 100%;
    height: 250px;
}

/* Images fit ANY size */
.pf-img {
    position: absolute;
    width: 100%;
    height: 100%;

    object-fit: contain; /* no cropping */
    background: #fff;

    opacity: 0;
    transition: 0.3s ease;
}

.pf-img.active {
    opacity: 1;
}

/* =========================
   ARROWS
========================= */
.pf-prev,
.pf-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: #ff7a00;
    color: black;

    border: none;
    font-size: 18px;

    padding: 8px 12px;
    cursor: pointer;

    z-index: 2;
}

.pf-prev {
    left: 0;
}

.pf-next {
    right: 0;
}

/* =========================
   TAG
========================= */
.pf-tag {
    display: inline-block;
    background: #ff7a00;
    color: black;

    padding: 5px 10px;
    margin-top: 10px;

    font-weight: bold;
    border-radius: 5px;
}

/* =========================
   TEXT
========================= */
.pf-h3 {
    margin: 10px 0;
    color: black;
}

.pf-text {
    margin: 3px 0;
    color: black;
}

/* =========================
   BUTTONS
========================= */
.pf-btn {
    display: inline-block;
    width: 100%;

    padding: 10px;
    margin-top: 10px;

    text-align: center;
    text-decoration: none;
    font-weight: bold;

    border-radius: 5px;
}

.pf-btn.whatsapp {
    background: #ff7a00;
    color: black;
}

.pf-btn.email {
    background: black;
    color: #ff7a00;
}

/* =========================
   FOOTER BASE
========================= */
.st-footer {
    background: #111; /* dark premium look */
    color: #fff;
    padding: 30px 20px;
    width: 100%;
}

/* container controls layout */
.st-footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1100px;
    margin: 0 auto;

    gap: 30px;
}

/* =========================
   LOGO
========================= */
.st-footer-logo img {
    width: 240px; /* 2x bigger than 120px */
    height: auto;
    object-fit: contain;
}

/* =========================
   TEXT CONTENT
========================= */
.st-footer-content {
    flex: 1;
    text-align: left;
}

.st-footer-content h3 {
    color: #ff7a00;
    margin-bottom: 10px;
}

.st-footer-content p {
    margin: 5px 0;
    font-size: 14px;
    color: #ddd;
}

/* copyright */
.st-footer-copy {
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
}

.img-stack {
    display: flex;
    flex-direction: column;  /* 🔥 this puts them underneath */
    gap: 10px;
    align-items: center;     /* keeps them centered */
    justify-content: center;
}

.img-stack img {
    width: 300px;
    height: auto;
    object-fit: contain;
}



/* 🔥 SIGNATURE = 1000px DESKTOP */
.signature-btn img {
    width: 1500px;
    max-width: none;   /* prevents breaking layout */
    height: auto;
    display: block;
}
.signature-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .st-footer-container {
        flex-direction: column;
        text-align: center;
    }

    .st-footer-content {
        text-align: center;
    }

    .st-footer-logo img {
        width: 200px; /* still big but fits mobile */
    }
}

.footer-map {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footer-map iframe {
    border-radius: 8px;
    width: 200px;
    height: 120px;
}




