/* ============================================================
   ECOMMECRE DARK - Custom Stylesheet
   ============================================================ */

@import url('../assets/vendor/googlefonts/googlefonts.css');

:root {
  --gold: #c9a84c;
  --gold-light: #e0c060;
  --dark-bg: #1a1a1a;
  --darker-bg: #111111;
  --topbar-bg: #111111;
  /* Match background color in image */
  --header-bg: #1c1c1c;
  /* Slightly lighter for header */
  --menu-bg: #1c1c1c;
  --text-light: #cccccc;
  --text-lighter: #eeeeee;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.text-gold {
  color: var(--gold) !important;
}

.text-light-muted {
  color: #bbbbbb !important;
}

.p-cat-gorgeous a {
  color: inherit;
  text-decoration: none;
}

.p-cat-gorgeous a:hover {
  text-decoration: underline;
  color: var(--gold-light) !important;
}

.category-section a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: 'Rubik', sans-serif;
  background-color: #000;
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
  background-color: var(--topbar-bg);
  border-bottom: 1px solid #2e2e2e;
  padding: 7px 0;
  font-size: 12px;
  color: var(--text-light);
}

.top-bar .social-icons {
  display: flex;
  gap: 8px;
}

.top-bar .social-icons a {
  color: #999999;
  background-color: #333333;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.top-bar .social-icons a:hover {
  color: var(--white);
  background-color: var(--gold);
}

.top-bar .announcement {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.4px;
  color: #bbbbbb;
}

.top-bar .announcement span {
  font-weight: 600;
  color: var(--white);
}

.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
}

.top-bar .top-bar-right a,
.top-bar .top-bar-right .currency-selector {
  color: #bbbbbb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s;
}

.top-bar .top-bar-right a:hover,
.top-bar .top-bar-right .currency-selector:hover {
  color: var(--gold);
}

.top-bar .top-bar-right .separator {
  color: #444;
}

/* ============================================================
   SLIDER & MOBILE REFINEMENTS
   ============================================================ */
.gem-slider {
  margin: 0 -15px;
}

.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s;
}

.header-action-box {
  width: 40px;
  /* Smaller as per image */
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Very subtle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  /* Smaller icon */
  transition: all 0.3s;
  border-radius: 2px;
}

.header-action-box i {
  opacity: 0.8;
}

.header-action-box:hover {
  border-color: #a3731a;
  color: #a3731a;
}

.header-cart-box {
  position: relative;
  height: 40px;
  /* Match icon boxes */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Match icon boxes */
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 0 15px 0 25px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.header-cart-box:hover {
  border-color: #a3731a;
}

.header-cart-badge {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  /* Smaller as per image */
  height: 22px;
  background: #a3731a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

.cart-content-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Tighter spacing */
}

.cart-content-inner i {
  color: #fff;
  font-size: 14px;
}

.cart-total-price {
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 400;
  /* Regular weight as per image */
  letter-spacing: 0.5px;
}

.cart-chevron-gorgeous {
  font-size: 8px;
  /* Tiny chevron */
  color: #a3731a;
  margin-left: 3px;
}

.slick-prev-custom {
  left: -70px;
}

.slick-next-custom {
  right: -70px;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background: var(--gold-text);
  color: #000;
  border-color: var(--gold-text);
}

@media (max-width: 1400px) {
  .slick-prev-custom {
    left: -30px;
  }

  .slick-next-custom {
    right: -30px;
  }
}

/* Mobile Sizing Refinements */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px !important;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .hero-content {
    padding-left: 0 !important;
    text-align: center;
    padding-bottom: 50px;
  }

  .exclusive-tag {
    font-size: 11px;
  }

  .main-header {
    padding: 15px 0;
  }

  .header-logo img {
    max-height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
  }

  .mobile-nav-toggle {
    background: transparent;
    border: none;
    color: #a3731a;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
  }

  .section-title-gorgeous {
    font-size: 32px !important;
    letter-spacing: 3px !important;
  }

  .section-subtitle-gorgeous {
    font-size: 20px !important;
  }

  /* Offcanvas overrides (Phase 3: Socials & Theme) */
  .offcanvas {
    background: #050505 !important;
    border-right: 1px solid rgba(212, 175, 55, 0.2) !important;
    width: 300px !important;
  }

  .offcanvas-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .offcanvas-title {
    font-size: 22px !important;
    letter-spacing: 2px;
    color: #a3731a;
  }

  .mobile-nav-list .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
  }

  .offcanvas.show .mobile-nav-list .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .offcanvas.show .mobile-nav-list .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .offcanvas.show .mobile-nav-list .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }

  .offcanvas.show .mobile-nav-list .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }

  .offcanvas.show .mobile-nav-list .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }

  .offcanvas.show .mobile-nav-list .nav-item:nth-child(5) {
    transition-delay: 0.5s;
  }

  .offcanvas.show .mobile-nav-list .nav-item:nth-child(6) {
    transition-delay: 0.6s;
  }

  .mobile-nav-list .nav-link {
    font-family: 'Prata', serif !important;
    font-size: 19px !important;
    padding: 8px 15px !important;
    color: #ffffff !important;
    transition: all 0.3s;
  }

  .mobile-nav-list .nav-link:hover {
    color: #a3731a !important;
    padding-left: 20px !important;
  }

  /* Premium Social Icons for Mobile Menu */
  .offcanvas-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
  }

  .offcanvas-socials a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
  }

  .offcanvas-socials a:hover {
    background: #a3731a;
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(163, 115, 26, 0.4);
  }

  .btn-close-white {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg);
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
  }

  .product-image-container img {
    max-height: 350px;
    object-fit: contain;
  }
}

/* ============================================================
   MODAL (ULTRA-GORGEOUS)
   ============================================================ */
.modal-gorgeous {
  background-color: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  color: #fff;
  overflow: hidden;
}

.btn-close-gorgeous {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-close-gorgeous:hover {
  color: var(--gold-text);
  transform: rotate(90deg);
}

/* Dropdown Menu (GORGEOUS) */
.nav-item {
  position: relative;
}

.dropdown-menu-gorgeous {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-item:hover .dropdown-menu-gorgeous {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-gorgeous {
  display: block;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  font-family: 'Prata', serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.dropdown-item-gorgeous:hover {
  background: rgba(212, 175, 55, 0.05);
  color: #a3731a;
  padding-left: 35px;
}

.modal-image-wrapper {
  height: 600px;
  background: #000;
  overflow: hidden;
}

.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info-gorgeous {
  padding: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal-cat {
  font-family: 'Playball', cursive;
  font-size: 24px;
  color: var(--gold-text);
  margin-bottom: 20px;
  display: block;
}

.modal-name {
  font-family: 'Prata', serif;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.modal-price {
  font-family: 'Rubik', sans-serif;
  font-size: 28px;
  color: var(--gold-text);
  font-weight: 500;
  display: block;
  margin-bottom: 40px;
}

.modal-desc {
  font-family: 'Rubik', sans-serif;
  color: #aaa;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 50px;
}

.modal-specs {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.modal-specs li {
  margin-bottom: 10px;
  color: #888;
}

.modal-specs li strong {
  color: #fff;
  width: 100px;
  display: inline-block;
}

.btn-modal-primary {
  width: 100%;
  padding: 18px;
  background: var(--champagne-gold);
  color: #000;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.btn-modal-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-modal-secondary {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.btn-modal-secondary:hover {
  border-color: var(--gold-text);
  color: var(--gold-text);
}

@media (max-width: 991px) {
  .modal-image-wrapper {
    height: 400px;
  }

  .modal-info-gorgeous {
    padding: 30px;
  }

  .modal-name {
    font-size: 32px;
  }
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
  background-color: var(--header-bg);
  padding: 35px 0;
  border-bottom: 1px solid #333333;
}

/* Left: Call Us */
.header-support {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-support .support-icon {
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}

.support-icon i {
  font-size: 32px;
  color: #a3731a;
  /* Gold from image */
}

.header-support .support-text p {
  margin: 0;
  line-height: 1.4;
}

.header-support .support-text .call-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-label {
  font-size: 13px;
  color: #a3731a;
  /* Gold from image */
  margin-bottom: 2px;
}

.header-support .support-text .call-number {
  font-size: 14px;
  font-weight: 500;
  color: #a3731a;
}

/* Center: Logo */
.header-logo img {
  max-height: 110px;
  /* Increased logo size */
  width: auto;
}

/* Right: Action Icons (Standardized to 40px) */
.header-actions-gorgeous {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.header-action-box {
  width: 40px;
  /* Standardized height */
  height: 40px;
  /* Standardized height */
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  border-radius: 4px;
}

.header-actions .action-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.header-actions .cart-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #333333;
  padding: 0 15px;
  height: 40px;
  /* Standardized height */
  border-radius: 2px;
}

.header-actions .cart-badge {
  background-color: var(--gold);
  color: var(--darker-bg);
  font-size: 11px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 11px;
  left: 5px;
  border: 2px solid var(--header-bg);
  z-index: 2;
}

.header-actions .cart-amount {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  margin-left: 30px;
  /* Space for the cart icon + badge */
}

.header-actions .cart-btn-group {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.header-actions .cart-icon-only {
  color: #ffffff;
  font-size: 18px;
}

/* ============================================================
   NAVIGATION MENU
   ============================================================ */
.main-nav {
  background-color: var(--menu-bg);
  border-bottom: 1px solid #333333;
}

.main-nav .navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin: 0 auto;
  justify-content: center;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .nav-link {
  color: #ffffff !important;
  font-family: 'Prata', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 20px 25px !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav .nav-link:hover {
  color: var(--gold) !important;
}

.main-nav .nav-link.active {
  color: var(--gold) !important;
}

.main-nav .nav-link .dropdown-caret {
  font-size: 10px;
  opacity: 0.8;
}

/* Dropdown */
.main-nav .nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  min-width: 160px;
  padding: 8px 0;
  z-index: 9999;
  border-top: 2px solid var(--gold);
}

.main-nav .nav-item:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu .dropdown-item {
  color: #cccccc;
  font-size: 13px;
  padding: 9px 18px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  display: block;
  transition: background 0.15s, color 0.15s;
}

.main-nav .dropdown-menu .dropdown-item:hover {
  background-color: #333333;
  color: var(--gold);
}

/* ============================================================
   HERO SECTION (placeholder area below menu)
   ============================================================ */
.hero-section {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.hero-section.hero-slider {
  background: none;
  padding: 0;
  display: block;
}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide > div {
  width: 100%;
  height: 100%;
}

.hero-section.hero-slider::before {
  display: none;
}

.hero-slide-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex !important;
  /* Vital for Slick's float:left */
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-slide-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-content .exclusive-tag {
  font-size: 14px;
  color: #0dcfda;
  font-weight: 400;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-content .hero-title {
  font-family: 'Prata', serif;
  font-size: 50px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 15px;
}

.exclusive-tag {
  font-family: Rubik, HelveticaNeue, Helvetica Neue, sans-serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content .hero-desc {
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 15px;
  max-width: 500px;
  line-height: 1.4;
}

.hero-content .hero-price-label {
  font-size: 16px;
  color: #aaaaaa;
  margin-bottom: 0px;
  font-family: 'Rubik', sans-serif;
}

.hero-content .hero-price {
  font-size: 36px;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 4px;
  font-family: 'Rubik', sans-serif;
}

.hero-content .hero-sub {
  font-size: 14px;
  color: #cccccc;
  letter-spacing: 0.5px;
}

.hero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
}

.hero-image-wrapper img {
  max-height: 300px;
  object-fit: contain;
}

/* ============================================================
   CATEGORY SECTION
   ============================================================ */
.category-section {
  padding: 60px 0;
  background-color: var(--darker-bg);
}

.category-card {
  background-color: #1c1c1c;
  border-radius: 4px;
  overflow: hidden;
  height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 24px;
  width: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.category-content {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

.category-subtitle-top {
  font-size: 13px;
  color: #eeeeee;
  margin-bottom: 6px;
  font-weight: 300;
}

.category-title {
  font-family: 'Prata', serif;
  font-size: 24px;
  color: var(--gold) !important;
  line-height: 1.2;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-subtitle-bottom {
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
}

.category-image {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.category-image img {
  height: 100%;
  width: auto;
  position: absolute;
  right: -10px;
  top: 0;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

/* ============================================================
   FEATURED PRODUCTS (ULTRA-GORGEOUS)
   ============================================================ */
:root {
  --champagne-gold: linear-gradient(135deg, #d4af37 0%, #f9e1a1 50%, #d4af37 100%);
  --gold-text: #d4af37;
}

.featured-products {
  padding: 140px 0;
  background-color: #050505;
  background-image: radial-gradient(circle at 10% 20%, rgba(201, 168, 76, 0.03) 0%, transparent 40%);
}

.section-head-gorgeous {
  margin-bottom: 80px;
  position: relative;
}

.section-subtitle-gorgeous {
  font-family: 'Playball', cursive;
  font-size: 25px;
  color: var(--gold-text);
  margin-bottom: -10px;
  display: block;
  opacity: 0.8;
}

.section-title-gorgeous {
  font-family: 'Prata', serif;
  font-size: 42px;
  color: #ffffff;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0;
}

.product-card-gorgeous {
  position: relative;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 50px;
  overflow: visible;
}

.product-card-gorgeous:hover {
  transform: translateY(-15px);
}

.product-image-container {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: sepia(0.2) brightness(0.9);
}

.product-card-gorgeous:hover .product-image-container img {
  transform: scale(1.15);
  filter: sepia(0) brightness(1.1);
}

/* Gold Corner Accents */
.product-card-gorgeous::before,
.product-card-gorgeous::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-color: #d4af37;
  border-style: solid;
  transition: all 0.6s ease;
  z-index: 10;
  opacity: 0;
}

.product-card-gorgeous::before {
  top: -5px;
  left: -5px;
  border-width: 1px 0 0 1px;
}

.product-card-gorgeous::after {
  bottom: -5px;
  right: -5px;
  border-width: 0 1px 1px 0;
}

.product-card-gorgeous:hover::before,
.product-card-gorgeous:hover::after {
  width: 40px;
  height: 40px;
  opacity: 1;
}

/* Action Strip */
.action-strip-gorgeous {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-gorgeous:hover .action-strip-gorgeous {
  transform: translateY(0);
}

.btn-gorgeous {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 0;
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-gorgeous:hover {
  background: rgba(212, 175, 55, 0.8);
  color: #000 !important;
}

/* Information Box */
.product-info-gorgeous {
  padding-top: 25px;
  text-align: left;
}

.p-cat-gorgeous {
  font-family: 'Playball', cursive;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 5px;
  display: block;
}

.p-name-gorgeous {
  font-family: 'Prata', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.p-price-gorgeous {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.p-price-current {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.p-price-old {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  color: #555;
  text-decoration: line-through;
  font-weight: 300;
}

/* Badges */
.badge-gorgeous {
  position: absolute;
  top: 15px;
  left: -5px;
  background: var(--champagne-gold);
  padding: 5px 15px;
  color: #000;
  font-family: 'Rubik', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 15;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* View All Row */
.view-all-gorgeous {
  margin-top: 100px;
}

.btn-view-all-gorgeous {
  display: inline-block;
  padding: 18px 55px;
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s;
  overflow: hidden;
}

.btn-view-all-gorgeous:hover {
  border-color: #d4af37;
  color: #d4af37;
  letter-spacing: 6px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.btn-view-all-gorgeous::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: 0.5s;
}

.btn-view-all-gorgeous:hover::before {
  left: 100%;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  padding: 100px 0;
  position: relative;
  text-align: center;
  margin: 60px 0;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.promo-banner-content {
  position: relative;
  z-index: 2;
}

/* Cinematic Reveal Animations */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .exclusive-tag,
.hero-content .hero-title,
.hero-content .hero-desc,
.hero-content .hero-price-label,
.hero-content .hero-price,
.hero-content .btn-hero-gorgeous {
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .exclusive-tag {
  animation-delay: 0.2s;
}

.hero-content .hero-title {
  animation-delay: 0.4s;
}

.hero-content .hero-desc {
  animation-delay: 0.6s;
}

.hero-content .hero-price-label {
  animation-delay: 0.8s;
}

.hero-content .hero-price {
  animation-delay: 1s;
}

.hero-content .btn-hero-gorgeous {
  animation-delay: 1.2s;
}

.promo-banner h2 {
  font-family: 'Prata', serif;
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  border-top: 1px solid #333333;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: #111111;
  border: 1px solid #333;
  padding: 15px 20px;
  color: #fff;
  border-radius: 2px;
}

.newsletter-form button {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 0 40px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #c5a02c;
}

/* THE JOURNAL (REFINED SLIDER DESIGN) */
.journal-section-gorgeous {
  background-color: #050505;
  padding: 100px 0;
}

.journal-slider-gorgeous {
  margin: 0 -15px;
}

.journal-card-gorgeous {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 15px 0;
}

.journal-card-gorgeous:hover {
  border-color: rgba(163, 115, 26, 0.5);
  background: #0e0e0e;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.journal-img-wrapper {
  position: relative;
  overflow: hidden;
}

.journal-img-wrapper img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.journal-card-gorgeous:hover .journal-img-wrapper img {
  transform: scale(1.15);
}

.journal-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #a3731a;
  color: #000;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 5;
}

.journal-content-gorgeous {
  padding: 35px 30px;
}

.journal-post-title {
  font-family: 'Prata', serif;
  font-size: 21px;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.journal-post-excerpt {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  line-height: 1.7;
  font-weight: 300;
  height: 3.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn-journal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 1px solid rgba(163, 115, 26, 0.5);
  border-radius: 50px;
  color: #a3731a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s;
}

.btn-journal-link:hover {
  background: #a3731a;
  color: #000;
  border-color: #a3731a;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(163, 115, 26, 0.3);
}

/* Journal Custom Arrow Positioning */
.journal-slider-gorgeous .slick-prev-custom {
  left: -30px;
}

.journal-slider-gorgeous .slick-next-custom {
  right: -30px;
}

/* Mobile Adjustments */
@media (max-width: 1200px) {
  .journal-slider-gorgeous .slick-prev-custom {
    left: 10px;
  }

  .journal-slider-gorgeous .slick-next-custom {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .journal-section-gorgeous {
    padding: 60px 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background-color: #111111;
  color: #999;
  padding: 80px 0 30px;
  font-size: 14px;
}

.footer-heading {
  font-family: 'Prata', serif;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
}

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

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

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #222;
  text-align: center;
}

/* ============================================================
   SHOP PAGE SPECIFIC STYLES
   ============================================================ */
.shop-section {
  padding: 80px 0;
  background-color: #050505;
}

.breadcrumb-section {
  padding: 40px 0;
  background-color: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 60px;
}

.breadcrumb-title {
  font-family: 'Prata', serif;
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #888;
}

.breadcrumb-list a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb-list .separator {
  color: #444;
}

/* Sidebar Styling */
.shop-sidebar {
  padding-right: 30px;
}

.filter-group {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 30px;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-title {
  font-family: 'Prata', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.filter-item {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-item:hover {
  padding-left: 5px;
}

.filter-label {
  font-size: 14px;
  color: #aaa;
  transition: color 0.3s;
}

.filter-item:hover .filter-label {
  color: var(--gold);
}

.filter-count {
  font-size: 12px;
  color: #555;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Custom Checkbox */
.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 12px;
  position: relative;
  transition: all 0.3s;
}

.filter-item:hover .custom-checkbox {
  border-color: var(--gold);
}

.filter-item.active .custom-checkbox {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-item.active .custom-checkbox::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.filter-item.active .filter-label {
  color: #fff;
}

/* Color Swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.2);
}

.color-swatch.active {
  border-color: var(--gold);
}

/* Price Range */
.price-range-wrapper {
  padding-top: 10px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.price-input {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  width: 100%;
  border-radius: 2px;
}

.price-btn {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.price-btn:hover {
  background: #c59d2c;
}

/* Pagination */
.shop-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-link-gorgeous {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.page-link-gorgeous:hover,
.page-link-gorgeous.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.product-grid-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.results-count {
  font-size: 14px;
  color: #888;
}

.sort-select-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-select {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

@media (max-width: 991px) {
  .shop-sidebar {
    margin-bottom: 60px;
    padding-right: 0;
  }
}

/* ============================================================
   E-COMMERCE PAGES (CART, CHECKOUT, ACCOUNT)
   ============================================================ */

/* Cart Page */
.cart-table-wrapper {
  background: #0a0a0a;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}

.cart-table th {
  font-family: 'Prata', serif;
  color: #fff;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.cart-table td {
  padding: 20px 15px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.02);
  color: #ccc;
}

.cart-product-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-product-name a {
  color: #fff;
  text-decoration: none;
  font-family: 'Prata', serif;
  font-size: 16px;
  transition: color 0.3s;
}

.cart-product-name a:hover {
  color: var(--gold);
}

.quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.quantity-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 30px;
  height: 35px;
  cursor: pointer;
  transition: all 0.3s;
}

.quantity-btn:hover {
  color: var(--gold);
}

.quantity-input {
  width: 40px;
  text-align: center;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-bottom: none;
  color: #fff;
  height: 35px;
}

.remove-btn {
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}

.remove-btn:hover {
  color: #ff4757;
}

.cart-summary {
  background: #0a0a0a;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-title {
  font-family: 'Prata', serif;
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
  color: #aaa;
}

.summary-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 10px;
  font-size: 20px;
  color: var(--gold);
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

/* Checkout Page */
.checkout-form {
  margin-bottom: 60px;
}

.form-group-gorgeous {
  margin-bottom: 25px;
}

.form-label-gorgeous {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.form-input-gorgeous {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.form-input-gorgeous:focus {
  border-color: var(--gold);
  outline: none;
}

.payment-method {
  margin-bottom: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.payment-method.active {
  border-color: var(--gold);
}

/* My Account Page */
.account-nav {
  list-style: none;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #0a0a0a;
}

.account-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  color: #aaa;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  font-size: 14px;
}

.account-nav-item:last-child a {
  border-bottom: none;
}

.account-nav-item a:hover,
.account-nav-item.active a {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold);
  padding-left: 30px;
}

.account-content-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  height: 100%;
}

.account-welcome h2 {
  font-family: 'Prata', serif;
  color: #fff;
  margin-bottom: 20px;
}

.account-welcome p {
  color: #ddd !important;
}

.account-content-card p.text-muted {
  color: #bbb !important;
}

.premium-order-table {
  width: 100%;
  color: #ccc;
  font-size: 14px;
}

.premium-order-table th {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.premium-order-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.status-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

.status-completed {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
}

.status-pending {
  background: rgba(255, 171, 0, 0.1);
  color: #ffab00;
}
/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background-color: #0d0d0d;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.testimonial-slider-gorgeous {
  padding: 20px 0;
}

.testimonial-item-gorgeous {
  padding: 15px;
}

.testimonial-card-gorgeous {
  background: var(--navbar-bg);
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card-gorgeous:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
}

.quote-icon-gorgeous {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: rgba(201, 168, 76, 0.1);
  pointer-events: none;
}

.testimonial-content-gorgeous p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-rating-gorgeous {
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 14px;
}

.testimonial-author-gorgeous {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.author-img-gorgeous img, 
.author-placeholder-gorgeous {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-placeholder-gorgeous {
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prata', serif;
  font-size: 24px;
  font-weight: bold;
}

.author-info-gorgeous h5 {
  margin: 0;
  font-family: 'Prata', serif;
  font-size: 18px;
  color: var(--white);
}

.author-info-gorgeous span {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Slick Arrow Customization for Testimonials */
.testimonial-slider-gorgeous .slick-prev,
.testimonial-slider-gorgeous .slick-next {
  width: 45px;
  height: 45px;
  z-index: 10;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-slider-gorgeous .slick-prev:hover,
.testimonial-slider-gorgeous .slick-next:hover {
  background: var(--gold);
}

.testimonial-slider-gorgeous .slick-prev:before,
.testimonial-slider-gorgeous .slick-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: var(--gold);
  opacity: 1;
}

.testimonial-slider-gorgeous .slick-prev:hover:before,
.testimonial-slider-gorgeous .slick-next:hover:before {
  color: #000;
}

.testimonial-slider-gorgeous .slick-prev { left: -55px; }
.testimonial-slider-gorgeous .slick-next { right: -55px; }

.testimonial-slider-gorgeous .slick-prev:before { content: "\f060"; }
.testimonial-slider-gorgeous .slick-next:before { content: "\f061"; }

/* Dots styling */
.testimonial-slider-gorgeous .slick-dots {
  bottom: -40px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.testimonial-slider-gorgeous .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.testimonial-slider-gorgeous .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.testimonial-slider-gorgeous .slick-dots li button:before {
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 30px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: var(--gold);
}

.testimonial-slider-gorgeous .slick-dots li.slick-active button:before {
  opacity: .75;
  color: var(--gold);
}

@media (max-width: 1250px) {
  .testimonial-slider-gorgeous .slick-prev { left: 5px; }
  .testimonial-slider-gorgeous .slick-next { right: 5px; }
}
