/* ============================= */
/* HEADER */
/* ============================= */

.site-branding{
    display:flex;
    align-items:center;
    gap:30px;
    width:100%;
}

.site-header .site-branding{
    margin-left:0px;
}

.site-branding img{
    max-height:260px;
    width:auto;
    height:auto;
    margin-bottom:-60px;
    position:relative;
    z-index:5;
}

.site-title{
    font-family:'Montserrat', sans-serif;
    font-weight:600;
    letter-spacing:1.5px;
    font-size:100px;
    color:#BFAD99;
    margin:0;
}

.site-title::after{
    content:"";
    display:block;
    width:200px;
    height:2px;
    background:#BFAD99;
    margin-top:12px;
}

.site-header{
    padding-bottom:10px;
}


/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-section {
  padding: 40px 20px;
  display: flex;
  justify-content: flex-start;
}

.about-container {
  max-width: 900px;
  width: 100%;
  color: #c9b5a0;
}

.about-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
  color: #c9b5a0;
}

.title-divider {
  width: 120px;
  height: 2px;
  background: #c9b5a0;
  margin: 12px 0 20px 0;
}

.about-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 25px;
}

.about-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #c9b5a0;
}

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

.product-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 6px;
  font-size: 17px;
}

.product-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #c9b5a0;
}


/* ============================= */
/* WOOCOMMERCE GRID */
/* ============================= */

.woocommerce-page .page-header {
    display: none !important;
}

.woocommerce ul.products {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:20px;
}

.woocommerce ul.products li.product {
    border:1px solid #e5e5e5;
    padding:20px;
    background:#fff;
    transition:all .2s ease;
}

.woocommerce ul.products li.product:hover {
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transform:translateY(-3px);
}

.woocommerce ul.products li.product h2{
    font-size:18px;
    font-weight:600;
    margin-top:10px;
}


/* ============================= */
/* QUOTE FORM PAGE */
/* ============================= */

.quote-form-container{
    max-width:900px;
    margin:auto;
    padding:50px;
    background:#ffffff;
    border:1px solid #e5e5e5;
}

.quote-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea{
    padding:14px;
    border:1px solid #dcdcdc;
    font-size:15px;
    background:#fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#000;
    background:#fff;
}


/* ============================= */
/* BOTONES (SOLO FORMULARIOS) */
/* ============================= */

.quote-btn,
#quoteFormPanel button,
.quote-form button{
    background:#000;
    color:white;
    padding:16px;
    border:none;
    font-size:15px;
    letter-spacing:1px;
    cursor:pointer;
    transition:all .25s ease;
}

.quote-btn:hover,
#quoteFormPanel button:hover,
.quote-form button:hover{
    background:#333;
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,.15);
}


/* ============================= */
/* QUOTE PANEL LATERAL */
/* ============================= */

.quote-panel{
    position:fixed;
    top:0;
    right:-400px;
    width:25%;
    min-width:320px;
    height:100%;
    background:#fff;
    box-shadow:-5px 0 25px rgba(0,0,0,0.15);
    z-index:9999;
    transition:all .4s ease;
    overflow-y:auto;
}

.quote-panel.open{
    right:0;
}

.quote-panel-content{
    padding:40px;
}

.close-quote{
    position:absolute;
    right:20px;
    top:15px;
    font-size:28px;
    cursor:pointer;
}

#quoteFormPanel{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}

#quoteFormPanel input,
#quoteFormPanel select,
#quoteFormPanel textarea{
    padding:12px;
    border:1px solid #ddd;
    font-size:14px;
}

.quote-success{
    display:none;
    text-align:center;
    margin-top:20px;
}


/* ============================= */
/* FILE UPLOAD */
/* ============================= */

.file-drop{
  border:2px dashed #ccc;
  padding:30px;
  text-align:center;
  cursor:pointer;
  display:block;
  background:#fafafa;
  transition:all .25s ease;
  position:relative;
}

.file-drop:hover{
  border-color:#000;
  background:#f2f2f2;
}

.file-drop input{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  cursor:pointer;
  top:0;
  left:0;
}

.upload-icon{
  font-size:32px;
  margin-bottom:8px;
}

.file-note{
  font-size:12px;
  color:#777;
  margin-top:8px;
}

.file-list{
  margin-top:10px;
  font-size:13px;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  .site-title{
    white-space:normal;
    font-size:28px;
  }

  .site-branding img{
    max-height:160px;
    top:20px;
  }

  .about-title {
    font-size: 30px;
  }

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

  .form-row-2{
    grid-template-columns:1fr;
  }

  .quote-form-container{
    padding:30px;
  }

}