/*
 Theme Name:   Azuri Child
 Theme URI:    http://wordpress.com
 Description:  Azuri Child Theme - Premium Fashion Store
 Author:       Goalthemes
 Author URI:   http://mygoalthemes.com
 Template:     azuri
 Version:      2.0.0
 Text Domain:  Azuri-child
*/

/* ======================================
   PREMIUM FASHION STORE — AZURI CHILD v2
   Colors: #111111 / #C9A227 / #F7F7F7
   Style: Zara / Represent aesthetic
   ====================================== */

:root {
  --primary: #111111;
  --accent: #C9A227;
  --bg-light: #F7F7F7;
  --white: #FFFFFF;
  --text-muted: #666666;
  --border-light: #E8E8E8;
  --font-primary: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Apply via .elementor-widget-container, body, etc. */

/* ======================================
   TOP BAR
   ====================================== */
.azuri-top-bar {
  background: var(--primary);
  color: #ccc;
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.5px;
}
.azuri-top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.azuri-top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.azuri-top-bar i {
  color: var(--accent);
  font-size: 14px;
}

/* ======================================
   MAIN HEADER
   ====================================== */
header.header-default {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
header.header-default .row.flex-middle {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
header.header-default .col-md-2 {
  width: 180px;
  flex-shrink: 0;
}
header.header-default .col-md-10 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Search Form in Header */
.azuri-header-search {
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
}
.azuri-header-search form {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}
.azuri-header-search input[type="search"] {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 13px;
  outline: none;
  background: var(--bg-light);
}
.azuri-header-search button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
}
.azuri-header-search button:hover {
  background: var(--accent);
}

/* Header Icons (Account, Wishlist, Cart) */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icons a {
  color: var(--primary);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.2s;
}
.header-icons a:hover {
  color: var(--accent);
}
.header-icons i {
  font-size: 20px;
}
.header-icons .count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ======================================
   NAVIGATION / MEGA MENU
   ====================================== */
.main-menu {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.main-menu .nav > li > a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 18px;
  transition: color 0.2s;
}
.main-menu .nav > li > a:hover,
.main-menu .nav > li.current-menu-item > a {
  color: var(--accent);
}

/* Dropdown */
.main-menu .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 15px 0;
}
.main-menu .dropdown-menu li a {
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 25px;
  transition: color 0.2s, padding-left 0.2s;
}
.main-menu .dropdown-menu li a:hover {
  color: var(--primary);
  padding-left: 30px;
  background: transparent;
}

/* ======================================
   HERO BANNER STYLES
   ====================================== */
.azuri-hero-banner .hero-content {
  padding: 120px 0;
}
.azuri-hero-banner .hero-subtitle {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
}
.azuri-hero-banner .hero-title {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.azuri-hero-banner .hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}
.azuri-hero-banner .hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.azuri-hero-banner .hero-btn:hover {
  background: var(--primary);
}

/* ======================================
   CATEGORY CARDS
   ====================================== */
.azuri-category-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}
.azuri-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.azuri-category-card:hover img {
  transform: scale(1.05);
}
.azuri-category-card .cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.azuri-category-card .cat-name {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.azuri-category-card .cat-count {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

/* ======================================
   PRODUCT CARDS
   ====================================== */
.azuri-product-card {
  text-align: center;
  margin-bottom: 30px;
}
.azuri-product-card .product-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  background: var(--bg-light);
}
.azuri-product-card .product-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s;
}
.azuri-product-card:hover .product-image img {
  transform: scale(1.03);
}
.azuri-product-card .product-name {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 400;
}
.azuri-product-card .product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.azuri-product-card .product-price del {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
}
.azuri-product-card .product-price ins {
  text-decoration: none;
  color: var(--accent);
}
.azuri-product-card .star-rating {
  font-size: 12px;
  color: var(--accent);
  margin-top: 5px;
}

/* ======================================
   SECTION HEADERS
   ====================================== */
.azuri-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.azuri-section-title h2 {
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 10px;
}
.azuri-section-title p {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ======================================
   WHY CHOOSE US
   ====================================== */
.azuri-why-us {
  text-align: center;
  padding: 30px 15px;
}
.azuri-why-us .icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 15px;
}
.azuri-why-us h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.azuri-why-us p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ======================================
   NEWSLETTER
   ====================================== */
.azuri-newsletter {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}
.azuri-newsletter h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.azuri-newsletter p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
}
.azuri-newsletter form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
.azuri-newsletter input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 14px;
  outline: none;
}
.azuri-newsletter button {
  padding: 14px 30px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.azuri-newsletter button:hover {
  background: #b8921f;
}

/* ======================================
   FOOTER
   ====================================== */
.azuri-footer {
  background: var(--primary);
  color: #999;
  padding: 60px 0 30px;
}
.azuri-footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.azuri-footer a {
  color: #999;
  font-size: 13px;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
.azuri-footer a:hover {
  color: var(--accent);
}
.azuri-footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.azuri-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #444;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s;
}
.azuri-footer .social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.azuri-footer .payment-methods {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
.azuri-footer .copyright {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 30px;
}

/* ======================================
   SHOP PAGE
   ====================================== */
.azuri-breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  padding: 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.azuri-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.azuri-breadcrumb a:hover {
  color: var(--accent);
}
.azuri-breadcrumb .current {
  color: var(--primary);
}

.shop-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.shop-filter-header .result-count {
  font-size: 13px;
  color: var(--text-muted);
}
.shop-filter-header .orderby {
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

/* Sidebar Filters */
.shop-sidebar .widget {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}
.shop-sidebar .widget-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.shop-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-sidebar .widget ul li {
  padding: 6px 0;
}
.shop-sidebar .widget ul li a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.shop-sidebar .widget ul li a:hover {
  color: var(--primary);
}

/* Product Grid */
ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media (max-width: 992px) {
  ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  ul.products { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 991px) {
  .azuri-header-search {
    display: none;
  }
  header.header-default .col-md-2 {
    width: auto;
  }
  .azuri-top-bar .container {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
  }
  .azuri-hero-banner .hero-title {
    font-size: 36px;
  }
}

/* ======================================
   GOAL FRAMEWORK OVERRIDES
   ====================================== */
.goal-page-loading { display: none !important; }

/* Header override — hide the theme default header-right since we use custom */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-right .wishlist-icon,
.header-right .mini-cart-button {
  position: relative;
}
.header-right .wishlist-icon i,
.header-right .mini-cart-button i {
  font-size: 20px;
  color: var(--primary);
}
.header-right .count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
/* ======================================
   ELEMENTOR PREMIUM HEADER
   ====================================== */
header.header-default { display: none; }
#goal-header { font-family: var(--font-primary); }
#goal-header .elementor-section:first-child { min-height: 36px; }
#goal-header .elementor-section:first-child .elementor-heading-title { font-family: var(--font-primary); font-size: 12px; font-weight: 400; letter-spacing: 0.5px; }
#goal-header .elementor-widget-icon-list .elementor-icon-list-items { justify-content: flex-end; }
#goal-header .elementor-widget-icon-list .elementor-icon-list-item { margin-left: 12px; }
#goal-header .elementor-widget-icon-list .elementor-icon-list-icon i { font-size: 14px; }
#goal-header .elementor-widget-icon-list .elementor-icon-list-text { font-size: 12px; }
#goal-header .elementor-section:nth-child(2) { background: #FFFFFF; }
#goal-header .elementor-widget-azuri_logo .logo img { max-height: 48px; width: auto; }
#goal-header .elementor-section:nth-child(2) .elementor-column:last-child { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
#goal-header .elementor-widget-azuri_user_info { display: inline-flex; align-items: center; }
#goal-header .elementor-widget-azuri_woo_header { display: inline-flex; align-items: center; }
#goal-header .header-button-woo { display: flex; align-items: center; }
#goal-header .header-button-woo .pull-right { margin-left: 5px; }
#goal-header .top-wrapper-menu a.login { font-size: 20px; color: var(--primary); display: flex; align-items: center; }
#goal-header .top-wrapper-menu a.login:hover { color: var(--accent); }
#goal-header .mini-cart { font-size: 20px; color: var(--primary); display: flex; align-items: center; position: relative; }
#goal-header .mini-cart:hover { color: var(--accent); }
#goal-header .mini-cart .count { background: var(--accent); color: #FFFFFF; font-size: 10px; font-weight: 600; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: -8px; right: -10px; }
#goal-header .wishlist-icon { font-size: 20px; color: var(--primary); display: flex; align-items: center; position: relative; }
#goal-header .wishlist-icon:hover { color: var(--accent); }
#goal-header .wishlist-icon .count { background: var(--accent); color: #FFFFFF; font-size: 10px; font-weight: 600; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: -8px; right: -10px; }
#goal-header .elementor-section:last-child { border-top: 1px solid rgba(255,255,255,0.08); }
#goal-header .elementor-section:last-child .main-menu { background: transparent; border: none; }
#goal-header .elementor-section:last-child .navbar-nav.megamenu > li > a { color: #CCCCCC !important; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; padding: 14px 22px; transition: color 0.3s; }
#goal-header .elementor-section:last-child .navbar-nav.megamenu > li > a:hover,
#goal-header .elementor-section:last-child .navbar-nav.megamenu > li.active > a { color: #FFFFFF !important; }
#goal-header .navbar-nav.megamenu .dropdown-menu { background: #FFFFFF; border: none; border-radius: 0; box-shadow: 0 15px 50px rgba(0,0,0,0.1); padding: 20px 0; }
#goal-header .navbar-nav.megamenu .dropdown-menu li a { color: #666666; font-size: 13px; padding: 8px 30px; transition: all 0.2s; }
#goal-header .navbar-nav.megamenu .dropdown-menu li a:hover { color: #111111; padding-left: 35px; background: transparent; }
@media (max-width: 991px) { #goal-header { display: none !important; } header.header-default { display: block !important; } }
.goal-topcart .offcanvas-content { position: fixed; top: 0; right: 0; width: 380px; height: 100%; background: #FFFFFF; z-index: 99999; transform: translateX(100%); transition: transform 0.4s; padding: 30px; overflow-y: auto; box-shadow: -5px 0 30px rgba(0,0,0,0.1); }
.goal-topcart .offcanvas-content.open { transform: translateX(0); }
.goal-topcart .title-cart-canvas { font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.overlay-offcanvas-content { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 99998; display: none; }
.overlay-offcanvas-content.open { display: block; }
.goal-topcart .close-cart { cursor: pointer; font-size: 20px; }
.overlay-search-header { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 99990; display: none; }
.goal-search-form .show-search-header { cursor: pointer; font-size: 20px; color: var(--primary); }
.goal-search-form .show-search-header:hover { color: var(--accent); }
#goal-header .elementor-widget-heading .elementor-heading-title { line-height: 1.4; }