.elementor-1334 .elementor-element.elementor-element-62ccb7f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1334 .elementor-element.elementor-element-7400c9d{--display:flex;}.elementor-1334 .elementor-element.elementor-element-263b10f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6b66b14 *//* ============================== */
/* Hero Section Styles            */
/* ============================== */
.shop-hero-section {
  background: url('https://slcphotocommunity.com/wp-content/uploads/2025/07/store-banner-example.jpg') no-repeat center center / cover;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.shop-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.shop-hero-text {
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 700px;
}

.shop-cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: #ffffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.shop-cta-button:hover {
  background: #ffce00;
}

/* ============================== */
/* Category Section Styles        */
/* ============================== */
.shop-category-section {
  background: #fffbe8;
  padding: 4rem 2rem;
  text-align: center;
}

.shop-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.shop-category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.category-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 280px;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card img {
  width: 100%;
  height: auto;
}

.category-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
}

/* ============================== */
/* Scroll Animation Effects       */
/* ============================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ffdd422 *//* ============================== */
/* Product Grid Custom Styling    */
/* ============================== */
.store-products-section {
  background: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 2rem auto 0;
  list-style: none;
}

.woocommerce ul.products li.product {
  background: #f9f9f9;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  width: 300px;
  text-align: left;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
}

.woocommerce ul.products li.product h2 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.woocommerce ul.products li.product .price {
  font-weight: bold;
  color: #444;
}

.woocommerce ul.products li.product img {
  border-radius: 0.5rem;
  height: auto;
  width: 100%;
  object-fit: cover;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-594d769 *//* ============================== */
/* How It Works Layout & Styles   */
/* ============================== */
.how-it-works-section {
  background: #f0f8ff;
  padding: 4rem 2rem;
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 280px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card img {
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  color: #444;
}/* End custom CSS */