/* CiS Joias OpenCart Theme - Fiel ao Original */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Cores exatas do site original */
:root {
  --primary-gold: #A58341;
  --text-dark: #2C2C2C;
  --text-medium: #666666;
  --text-light: #999999;
  --border-light: #E8E8E8;
  --background-white: #FFFFFF;
  --background-light: #FAFAFA;
  --font-primary: "Cormorant Garamond", Sans-serif;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {

    padding-right: 10px;
    padding-left: 10px;
}

@media (max-width: 768px) {
    footer{
        text-align:center;
    }
}

/* Reset e Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--background-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
#header {
  height: 80px;
}
/* Small devices (sm): ≥576px */
@media (min-width: 375px) {
  #header {
    height: 120px;
  }
}
/* Small devices (sm): ≥576px */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  #header {
    height: 120px;
  }
}

/* Medium devices (md): ≥768px */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  #header {
    height: 80px;
  }
}

/* Large devices (lg): ≥992px */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Extra large devices (xl): ≥1200px */
@media (min-width: 1200px) {
  .container {
    max-width: 1146px;
  }
}

/* XXL devices (xxl): ≥1400px */
@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

@media (min-width: 1900px) {
  .container {
    max-width: 1785px;
  }
}

.container-fluid {
  max-width: 1346px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles - Exatamente como no site original */
#header {
  background: var(--background-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Desktop Header */
.header-desktop {
  display: block;
}

.header-mobile {
  display: none;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

/* Left Navigation */
.header-nav-left {
  flex: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-family: "ABeeZee", sans-serif;
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}
a:hover{
  text-decoration: unset;
}
.nav-menu a:hover {
  color: var(--primary-gold);

}

.nav-menu .fas.fa-chevron-down {
  font-size: 10px;
  margin-left: 4px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 15px !important;
  left: 0;
  background: var(--background-white);
  border: 1px solid var(--background-white);
  border-radius: 5px;
  min-width: 200px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0) !important;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  display: block;
  padding: 8px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: var(--background-light);
  color: var(--primary-gold);
}

.dropdown-item.sub-item {
  padding-left: 40px;
  font-size: 13px;
  color: var(--text-medium);
}

/* Center Logo */
.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header-logo a {
  display: block;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* Right Icons */
.header-icons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.icon-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.icon-link:hover {
  color: var(--primary-gold);
}

.icon-badge,
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-gold);
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile Header Styles */
.mobile-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary-gold);
  transition: all 0.3s ease;
}

.mobile-logo {
  flex: 1;
  text-align: right;
}

.mobile-logo img {
  height: 32px;
  width: auto;
}

.mobile-logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
}

.mobile-placeholder {
  width: 24px;
}
.header-desktop .header-icons a{
  min-width: 100px;
}
.header-desktop .header-icons a i{
  font-size: 20px;
}
.header-desktop .header-icons a i.fa-heart,.header-desktop .header-icons a i.fa-user{
  font-weight: 500 !important;
}
.mobile-bottom-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  background: var(--background-white);
}

.mobile-icon {
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.2s ease;
}

.mobile-icon:hover {
  color: var(--text-dark);
}

.mobile-icon .icon-badge,
.mobile-icon .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--text-dark);
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile Navigation */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background-white);
  border-bottom: 1px solid var(--border-light);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  padding: 20px;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--primary-gold);
}

.mobile-dropdown-toggle .fas {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.mobile-dropdown-toggle.active .fas {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
  display: none;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu a {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-medium);
}

/* Search Modal */
.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: none;
  padding: 20px 20px 0;
}

.modal-header .close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-medium);
  opacity: 1;
  margin: 0;
  padding: 0;
}

.modal-body {
  padding: 20px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  padding: 16px 60px 16px 24px;
  font-size: 16px;
  font-family: var(--font-primary);
  outline: none;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  border-color: var(--primary-gold);
}

.search-button {
  position: absolute;
  right: 8px;
  background: var(--primary-gold);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-button:hover {
  background: #B8956A;
}

/* Responsive Design */
@media (max-width: 991px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }



  .container-fluid {
    padding: 0;
  }
}
.swiper-pagination-bullet-active {
    background: #945F15 !important;
}
.swiper-pagination-bullet{
    background: #a58341 !important;
}
@media (max-width: 768px) {
  .mobile-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
  }
  
  .product-details h4 {
    min-height: 68px;
    }
  .title-new .module-title{
    font-size: 28px !important;
    margin: 60px 0 0 0 !important;
    padding: 0 !important;

  }
  .title-new p{
    line-height: 20px !important;
    font-size: 12px !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 20px !important;
  }
  .swiper-viewport {
    margin: 0 !important;
  }
  .container .row{
      padding: 0 10px;
  }
}

/* Header scroll effects */
#header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

#header.header-hidden {
  transform: translateY(-100%);
}

/* Menu body lock */
body.menu-open {
  overflow: hidden;
}

/* Footer Styles */
#footer {
  background: var(--background-light);
  margin-top: 80px;
  padding: 60px 0 40px;
}

.newsletter-section {
  background: var(--background-white);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.newsletter-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.newsletter-subtitle {
  color: var(--text-medium);
  margin-bottom: 32px;
  font-size: 16px;
}

.newsletter-input-wrapper {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-input:focus {
  border-color: var(--primary-gold);
}

.newsletter-button {
  background: var(--primary-gold);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: #B8956A;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-section {
  margin-bottom: 32px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-text {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  width: 25px;
  height: 25px;
  color: var(--text-medium);
  text-decoration: none;
}
.sku{
    font-size: 13px;
    color: #7E7E7E;
}
#product-product .product-details{
  text-align: left !important;
}
#product-product h2{
  color: #7E7E7E;
  font-family: "Cormorant Garamond", Sans-serif;
  font-size: 27px;
  font-weight: 700;
  margin: 50px 0;
  text-align: center;
}

.product-title{
  margin-top: 20px !important;
  color: #A58341;
  font-family: "Cormorant Garamond", Sans-serif;
  font-size: 36px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.tags a{
  font-family: "Cormorant Garamond", Sans-serif;
  text-decoration: none;
  color: #7E7E7E;
}
#product-product .description{
  margin-bottom: 30px !important;
  color: #888888;
}

#product-product .product-price{
  margin: 20px 0 !important;
  color: #7E7E7E;
}


.social-link:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  display: block;
  text-align: center;
}

.copyright {
  color: var(--text-medium);
  font-size: 14px;
  margin: 0;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-methods img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.payment-methods img:hover {
  opacity: 1;
}

/* Product Styles */
.product-thumb {
  background: var(--background-white);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.product-thumb .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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


.product-details {
  padding: 0 1.0em;
  text-align: center;
    margin: 35px 0 0;
}

.product-details h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-details h4 a {
    font-family: "Cormorant Garamond", Sans-serif;

  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #A58341;
  margin-bottom: 15px;
}

.product-details h4 a:hover {
  color: var(--primary-gold);
}

.price {
    font-weight: 600;
    margin-bottom: 16px;
    color: #7E7E7E;
    font-family: "ABeeZee", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.price-new {
  color: #7E7E7E;
    font-family: "ABeeZee", Sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: none;
}

.price-old {
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 14px;
}

.button-group {
  display: flex;
  gap: 8px;
}

.btn {
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: white;
  flex: 1;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
  background: #B8956A;
  border-color: #B8956A;
}.btn-primary:focus,.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus{
   box-shadow: 0 0 0 .2rem rgba(255, 196, 153, 0.5) !important;
 }

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
  background: #B8956A;
  border-color: #B8956A;

}
.btn-default {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-medium);
}

.btn-default:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 20px 0;
  margin-bottom: 32px;
  font-size: 14px;
}

.breadcrumb-item {
  color: var(--text-medium);
  display:none;
}

.breadcrumb-item a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-gold);
}

.breadcrumb-item.active {
  color: var(--text-dark);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--text-light);
  margin: 0 8px;
}

/* Module Titles */
.module-title {
  font-size: 36px;
  font-weight: 400;
  color: #4A4A4A;
  margin: 48px 0;
  position: relative;
}

.module

/* Form Styles */
.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-primary);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  outline: none;
  box-shadow: none;
}

.form-group {
  margin-bottom: 20px;
}

.control-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-thumb {
  animation: fadeInUp 0.6s ease-out;
}
/* Secondary Image Hover Effect */
.product-image {
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
  display: block;
}
.product-image .img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-image:hover .img-primary {
  opacity: 0;
}
.product-image:hover .img-secondary {
  opacity: 1;
  transform: scale(1.03);
}