/* Global Typography - Montserrat Font, Non-Bold, Small Sizes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');

:root{
  --gold:#d4a000;
  --bg:#f5f5f5;
  --paper:#ffffff;
  --muted:#666666;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: 'Montserrat' !important;
  font-weight: 400 !important;
}

html, body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
}

strong, b {
  font-weight: 400 !important;
}

nav, nav a, .navbar, .nav-link, .menu-item, .main-nav a, .mobile-nav-link {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-family: 'Montserrat' !important;
}

p {
  font-size: 13px;
  font-weight: 400 !important;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
}

body.bg-light{
  background:var(--bg);
  color:#000;
  font-family:'Montserrat';
font-weight: 400;
  padding-top:0;
}

/* Header Styles */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 24px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  height:60px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:#ffffff;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.brand a:hover {
  opacity: 0.8;
}

.logo{
  height:100px;
}

.main-nav{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:24px;
}

.main-nav a{
  color:#000000;
  text-decoration:none;
  font-weight:400;
  opacity:.95;
  padding:8px 12px;
  border-radius:4px;
  transition:all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a:active{
  background:rgba(212,160,0,0.1);
  color: #000000;
  opacity:1;
}

.main-nav a.active {
  background:rgba(212,160,0,0.15);
  color: #000000;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
  position: relative;
}

.nav-icon{
  background:none;
  border:none;
  color: var(--gold);
  cursor:pointer;
  padding:8px;
  border-radius:4px;
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.nav-icon:hover,
.nav-icon:focus,
.nav-icon:active{
  background:rgba(212,160,0,0.1);
  color: var(--gold);
  transform:scale(1.05);
}

.nav-icon svg{
  width:20px;
  height:20px;
}

/* Search functionality */
.search-container {
  display: none !important;
  position: relative;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  min-width: 250px;
  max-width: 400px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
}

.search-container.active {
  display: flex !important;
  opacity: 1;
  transform: scaleX(1);
  visibility: visible;
}

.search-container.active ~ .nav-icon,
.search-container.active ~ button.nav-icon {
  display: none;
}

.search-toggle.active {
  display: none;
}

.search-input {
  flex: 1;
  border: 1px solid rgba(212,160,0,0.3);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(255,255,255,0.9);
  color: #000;
}

.search-input:focus {
  border-color: var(--gold);
  background: #fff;
}

.search-close {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-close:hover {
  background: rgba(212,160,0,0.1);
  color: var(--gold);
}

.search-close svg {
  width: 18px;
  height: 18px;
}

/* Mega dropdown */
.mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #f5f5f5;
  border-top: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .3s ease;
  z-index: 1000;
  display: none;
}

.site-header.expand .mega {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.mega-inner {
  width: 100%;
  margin: 0;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.projects-grid {
  grid-template-columns: repeat(4, 1fr);
}

.dropdown-section {
  text-align: left;
}

.dropdown-section h4 {
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  border-bottom: 1px solid rgba(212,160,0,0.3);
  padding-bottom: 8px;
}

.dropdown-section a {
  display: block;
  color: #000000;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.dropdown-section a:hover,
.dropdown-section a:focus,
.dropdown-section a:active {
  color: #000000;
  opacity: 1;
  padding-left: 8px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-content {
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus,
.mobile-nav-link:active {
  color: var(--gold);
  padding-left: 20px;
}

/* Shop Hero Section */
.shop-hero {
  position: relative;
  width: 100%;
  height: 20vh;
  min-height: 400px;
  overflow: hidden;
  margin-top: 60px;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  padding: 0 40px;
}

.shop-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.shop-subtitle {
  font-size: 1.3rem;
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Products Section */
.products-section {
  padding: 60px 40px 80px;
  background: var(--bg);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
}

.product-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
}

.btn-add-to-cart {
  padding: 10px 20px;
  background: var(--gold);
  color: #000000;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: 'Montserrat';
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-add-to-cart:hover {
  background: #b89000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,160,0,0.3);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.no-products p {
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .mega-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }

  .shop-hero {
    height: 50vh;
    min-height: 350px;
  }

  .shop-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo {
    height: 40px;
  }
  
  .nav-actions {
    gap: 8px;
  }
  
  .nav-icon {
    padding: 6px;
  }
  
  .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  .search-container {
    min-width: 200px;
    max-width: 300px;
  }
  
  .search-input {
    padding: 5px 10px;
    font-size: 13px;
  }
  
  .site-header {
    padding: 6px 16px;
    height: 50px;
  }

  .shop-hero {
    height: 45vh;
    min-height: 300px;
    margin-top: 50px;
  }

  .shop-title {
    font-size: 1.8rem;
  }

  .shop-subtitle {
    font-size: 1.1rem;
  }

  .products-section {
    padding: 40px 20px 60px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .product-image {
    height: 200px;
  }

  .shop-hero .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .shop-hero {
    height: 40vh;
    min-height: 250px;
  }

  .shop-title {
    font-size: 1.5rem;
  }

  .shop-subtitle {
    font-size: 1rem;
  }

  .products-section {
    padding: 30px 15px 50px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-add-to-cart {
    width: 100%;
  }

  .shop-hero .container {
    padding: 0 15px;
  }
}










