/* --- Global --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
=============================================
--- Coupon Grid [coupon_grid] ---
=============================================
*/
.dcw-coupon-grid {
	font-family: "poppins"!important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  padding: 20px !important;
}
.dcw-coupon-grid * {
  box-sizing: border-box !important;
}
.dcw-coupon-grid .deal-card {
  max-width: 100% !important;
  border-radius: 0.5rem !important;
  background-color: #fff7f4 !important;
  overflow: hidden !important;
  font-family: "Poppins", sans-serif !important;
  color: #000c2d !important;
  box-shadow: none !important;
  border: 1px solid #fdecdf !important;
  display: flex !important;
  flex-direction: column !important;
  animation: fadeIn 0.5s ease-out forwards !important;
}
.dcw-coupon-grid .deal-header {
  position: relative !important;
  height: 168px !important;
  flex-shrink: 0 !important;
}
.dcw-coupon-grid .deal-header .deal-background-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.dcw-coupon-grid .logo-overlay {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 110px !important;
  height: 110px !important;
  background-color: #ffffff;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}
.dcw-coupon-grid .logo-overlay img {
  width: 110px !important;
  max-width: 110px !important;
  height: 110px !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 50% !important;
}
.dcw-coupon-grid .badge {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  font-weight: 500 !important;
  padding: 0 8px !important;
  font-size: 12px !important;
  line-height: 2em !important;
  border-radius: 3px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  z-index: 1 !important;
}
.dcw-coupon-grid .exclusive-badge {
  background-color: #e54d3d !important;
}
.dcw-coupon-grid .top-deal-badge {
  background-color: #3b82f6 !important;
}
.dcw-coupon-grid .deal-content {
  padding: 10px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}
.dcw-coupon-grid .deal-content-main {
  flex-grow: 1 !important;
}
.dcw-coupon-grid .store-name {
  font-size: 12px !important;
  margin-bottom: 5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  margin-top: 0px !important;
}
.dcw-coupon-grid .store-name a {
  color: inherit !important;
  text-decoration: none !important;
}
.dcw-coupon-grid .deal-title {
  margin-bottom: 0.5em !important;
  margin-top: 0 !important;
  line-height: 1.2em !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #d43104 !important;
}
.dcw-coupon-grid .deal-title .dcw-popup-trigger {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  white-space: normal!important;
}
.dcw-coupon-grid .deal-title .dcw-popup-trigger:hover {
  text-decoration: underline;
}
.dcw-coupon-grid .deal-footer {
  margin-top: auto !important;
  padding-top: 10px !important;
}
.dcw-coupon-grid .deal-footer-summary {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.dcw-coupon-grid .deal-usage,
.dcw-coupon-grid .details-toggle {
  color: rgba(0, 12, 45, 0.7) !important;
  font-size: 11px !important;
}
.dcw-coupon-grid .details-toggle {
  font-weight: 500 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  white-space: nowrap !important;
}
.dcw-coupon-grid .toggle-icon {
  transition: transform 0.3s ease-in-out !important;
}
.dcw-coupon-grid .rotate-180 {
  transform: rotate(180deg) !important;
}
.dcw-coupon-grid .deal-details-dropdown {
  max-height: 0;
  overflow: hidden !important;
  transition: max-height 0.8s ease-in-out, padding-top 0.8s ease-in-out;
  font-size: 12px !important;
  padding-top: 0;
}
.dcw-coupon-grid .deal-details-dropdown.expanded {
  max-height: 200px;
  padding-top: 5px;
}
@media (max-width: 992px) {
  .dcw-coupon-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .dcw-coupon-grid {
    grid-template-columns: 1fr !important;
  }
}

/*
=============================================
--- Category Grid [category_grid] ---
=============================================
*/
.dcw-category-grid {
	font-family: "poppins"!important;
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 20px !important;
  text-align: center !important;
}
.dcw-category-grid .dcw-category-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s ease-out forwards !important;
  display: block !important;
  width: auto !important;
}
.dcw-category-grid .dcw-category-link {
  display: inline-block !important;
  text-decoration: none !important;
  color: #07525d !important;
  transition: transform 0.3s ease-in-out !important;
}
.dcw-category-grid .dcw-category-link:hover {
  transform: translateY(-5px) !important;
}
.dcw-category-grid .dcw-category-image-wrapper {
  width: 130px !important;
  height: 130px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin: 0 auto 15px auto !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.dcw-category-grid .dcw-category-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.dcw-category-grid .dcw-category-name {
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  font-family: "Poppins", sans-serif !important;
}
@media (max-width: 992px) {
  .dcw-category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .dcw-category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
  .dcw-category-grid .dcw-category-image-wrapper {
    width: 100px !important;
    height: 100px !important;
  }
  .dcw-category-grid .dcw-category-name {
    font-size: 12px !important;
  }
}

/*
=============================================
--- Store Grid [store_grid] ---
=============================================
*/
.dcw-store-grid {
	font-family: "poppins"!important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  padding: 20px 0 !important;
}
.dcw-store-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  text-decoration: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  transition: opacity 0.3s ease !important;
  animation: fadeIn 0.5s ease-out forwards !important;
}
.dcw-store-item:hover {
  opacity: 0.8 !important;
  transform: none !important;
}
.dcw-store-logo-wrapper {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  margin-bottom: 10px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  background-color: #fff;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.dcw-store-logo-wrapper img {
  width: 80% !important;
  height: 80% !important;
  object-fit: contain !important;
}
.dcw-store-name {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #000c2d !important;
}
.dcw-store-count {
  font-size: 12px !important;
  color: #666 !important;
}
@media (min-width: 768px) {
  .dcw-store-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .dcw-store-item {
    flex-direction: row !important;
    text-align: left !important;
  }
  .dcw-store-logo-wrapper {
    width: 65px !important;
    height: 65px !important;
    margin-right: 15px !important;
    margin-bottom: 0 !important;
  }
  .dcw-store-info {
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  .dcw-store-name {
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .dcw-store-info {
    display: flex !important;
    flex-direction: column !important;
  }
}

/*
=============================================
--- Store Heading [store_heading] ---
=============================================
*/
.dcw-store-heading {
  font-family: "Poppins", Sans-serif !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  line-height: 2.75rem !important;
  letter-spacing: -0.0625rem !important;
  color: #000c2d !important;
}
@media (max-width: 768px) {
  .dcw-store-heading {
    font-size: 14px !important;
    line-height: 1.4rem !important;
  }
}

/*
=============================================
--- Universal Popup Styles (Pixel-Perfect Version) ---
=============================================
*/
#dcw-popup-overlay {
	font-family: "poppins"!important;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 47, 0.6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10000 !important;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 20px;
}
#dcw-popup-overlay.dcw-popup-hidden {
  opacity: 0;
  pointer-events: none;
}
#dcw-popup-box {
  background-color: #fff !important;
  border-radius: 12px !important;
  padding: 40px !important;
  width: 100% !important;
  max-width: 750px !important;
  text-align: center !important;
  position: relative !important;
  transform: scale(1);
  transition: transform 0.3s ease;
  font-family: "Poppins", sans-serif !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}
#dcw-popup-overlay.dcw-popup-hidden #dcw-popup-box {
  transform: scale(0.95);
}
#dcw-popup-close {
  position: absolute !important;
  top: 15px;
  right: 20px;
  background: none !important;
  border: none !important;
  font-size: 32px !important;
  color: #aaa !important;
  cursor: pointer;
  line-height: 1 !important;
}

/* Header */
.dcw-popup-header {
	font-family: "poppins"!important;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.dcw-popup-logo-wrapper {
  width: 100px;
  height: 100px;
  flex-shrink: 0 !important;
  margin: 0 15px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}
#dcw-popup-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#dcw-popup-title {
  font-size: 27px !important;
  font-weight: 500 !important;
  color: #000c2d !important;
  margin: 0px !important;
  line-height: 1.3 !important;
}

/* Body */
.dcw-popup-button {
  display: inline-block !important;
  background-color: #0d6efd !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 14px 35px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer;
  width: 60%;
  transition: background-color 0.2s ease;
}
.dcw-popup-button:hover {
  background-color: #0b5ed7 !important;
}

.dcw-popup-code-wrapper {
  display: flex;
  flex-direction: row;
  width: 60%;
  margin: 0 auto;
  border: 1px dashed #0d6efd !important;
  border-radius: 35px;
  overflow: hidden !important;
  justify-content: space-between;
}
#dcw-popup-code {
  padding: 14px 25px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #000c2d !important;
  letter-spacing: 1px;
  width: 100% !important;
  text-align: left !important;
}
.dcw-popup-button-copy {
  padding: 14px 25px !important;
  background-color: #0d6efd !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  border-radius: 35px;
  position: absolute;
  right: 175px;
}
.dcw-popup-button-copy:hover {
  background-color: #0b5ed7 !important;
}

/* Footer */
.dcw-popup-footer {
	font-family: "poppins"!important;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.dcw-popup-footer p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000c2d;
}
.dcw-popup-form {
  display: flex;
  margin-bottom: 10px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.dcw-popup-form input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  padding: 12px;
  font-size: 14px;
  border-right: none;
}
.dcw-popup-form button {
  background: #000c2d;
  color: #fff;
  border: none;
  padding: 0 25px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-weight: 600;
}
.dcw-popup-footer span {
  font-size: 12px;
  color: #999;
}
.dcw-popup-footer span a {
  color: #999;
  text-decoration: underline;
}

/* --- Responsive Styles for Popup --- */
@media (max-width: 576px) {
  .dcw-popup-header {
    flex-direction: column;
  }
  .dcw-popup-button {
    width: 100% !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
  }
  .dcw-popup-footer {
    margin-top: 15px !important;
    padding-top: 15px !important;
  }
  #dcw-popup-box {
    padding: 25px !important;
  }
  #dcw-popup-title {
    font-size: 16px !important;
    margin-top: 12px !important;
  }
  .dcw-popup-code-wrapper {
    width: 100% !important;
  }
  #dcw-popup-code {
    font-size: 14px !important;
    padding: 10px 15px !important;
  }
  .dcw-popup-button-copy {
    font-size: 12px !important;
    padding: 10px 20px !important;
    right: 26px !important;
  }
  .dcw-popup-footer p {
    font-size: 14px;
  }
}

/*
=============================================
--- Dynamic Button Shortcode Styles ---
=============================================
*/
.dcw-deal-button,
.dcw-code-button {
	font-family: "poppins"!important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 30px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
  transition: opacity 0.3s ease !important;
}
.dcw-deal-button:hover,
.dcw-code-button:hover {
  opacity: 0.9 !important;
}
.dcw-deal-button {
  background-color: #2269dc !important;
  color: #fff !important;
  padding: 12px 30px !important;
  font-size: 15px !important;
  width: 100% !important;
  border: none !important;
}
.dcw-code-button {
  border: 2px dashed #0d6efd !important;
  background-color: #fff !important;
  padding: 0 !important;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  overflow: hidden !important;
}
.dcw-code-button-text {
  background-color: #2269dc !important;
  color: #fff !important;
  padding: 12px 0px !important;
  font-size: 16px !important;
  position: absolute;
  left: 0px;
  border-radius: 30px 0px 0px 30px;
  clip-path: polygon(0 0, 95% 0, 85% 100%, 0 100%);
  width: 90%;
}
.dcw-code-button-text:hover {
  clip-path: polygon(0 0, 92% 0, 82% 100%, 0 100%);
  transition: 0.4s ease-in;
}
.dcw-code-button-code {
  color: #000c2d !important;
  font-size: 16px !important;
  padding: 10px 20px !important;
  letter-spacing: 1px;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  text-align: right;
  width: 100% !important;
}

@media (max-width: 576px) {
  .dcw-deal-button {
    padding: 8px 30px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
  }
  .dcw-code-button-text {
    padding: 8px 0px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    width: 95% !important;
  }
  .dcw-code-button-code {
    padding: 6px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
  }
}

/*
=============================================
--- Hero Banner Styles [hero_banner] --- UPDATED
=============================================
*/
.dcw-hero-banner {
	font-family: "poppins"!important;
    position: relative !important;
    width: 100% !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    padding: 40px !important;
    min-height: 320px;
	animation: fadeIn 0.6s ease-out forwards !important;
}

.dcw-hero-arc {
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3 !important;
    background: var(--dcw-desktop-grad);
	width: 50%;
    border-radius: 0 180px 180px 0;
}

/* === UPDATED PART: Styling the new <picture> and <img> tags === */
.dcw-hero-bg-picture,
.dcw-hero-bg-img {
	font-family: "poppins"!important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* This makes the img behave like background-size: cover */
    z-index: 2 !important;
}
/* === END OF UPDATED PART === */

.dcw-hero-content {
	font-family: "poppins"!important;
    position: relative !important;
    z-index: 4 !important; /* Increased z-index to be above the image */
    color: #000;
    max-width: 100%;
}

.dcw-hero-logo {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0px 0px 12px -4px rgba(0, 0, 0, 0.5);
}
.dcw-hero-logo img {
    width: 80px;
    max-width: 100%;
    height: 80px;
    object-fit: cover;
    object-position: center center;
    border-radius: 124px 124px 124px 124px;
}

.dcw-hero-title {
	font-family: "poppins"!important;
	font-size: 37px;
    font-weight: 600;
    line-height: 1.2 !important;
    margin:0px !important;
    color: #fff !important;
}

.dcw-hero-subtitle {
	font-family: "poppins"!important;
    font-size: 21px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 0 25px 0 !important;
    color: #fff !important;
}

.dcw-hero-button {
	font-family: "poppins"!important;
    display: inline-block !important;
    background-color: var(--dcw-desktop-btn-color) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 18px 70px 18px 70px;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: transform 0.2s ease;
	text-transform: uppercase;
}
.dcw-hero-button:hover {
    transform: scale(1.05);
}

/* --- Responsive Styles for Hero Banner --- */
@media (max-width: 768px) {
    .dcw-hero-banner {
        min-height: 538px;
        padding: 30px !important;
        align-items: flex-start !important;
    }
    .dcw-hero-arc {
        background: var(--dcw-mobile-grad);
		width: 100%!important;
		height: 315px!important;
        border-radius: 0 0 180px 180px !important;
    }
    /* Specific styling for mobile image */
    .dcw-hero-bg-img {
        object-position: center bottom;
    }
    .dcw-hero-content {
		width: 100%!important;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .dcw-hero-title {
        font-size: 28px !important;
		margin-bottom: 0px !important;
    }
    .dcw-hero-subtitle {
        font-size: 18px !important;
		font-weight: 500;
    }
    .dcw-hero-button {
        background-color: var(--dcw-mobile-btn-color) !important;
		padding: 14px 30px 14px 30px !important;
		font-weight: 500!important;
        text-transform: uppercase!important;
		font-size: 15px!important;
    }
}

/*
=============================================
--- Button Shortcodes [store_buttons], [top_coupon_category_buttons] etc. ---
=============================================
*/
.store-buttons-wrapper,
.coupon-category-buttons-wrapper,
.blog-category-buttons-wrapper {
	font-family: "poppins"!important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.store-button,
.coupon-category-button,
.blog-category-button {
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}
.store-button {
  border: 1px solid #000c2d;
  background-color: #fff;
  color: #000c2d!important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.store-button:hover {
  background-color: #e6e6e6;
  color: #000c2d!important;
}
.coupon-category-button,
.blog-category-button {
  background-color: #d8ecef;
  color: #07525d!important;
}
.coupon-category-button:hover,
.blog-category-button:hover {
  color: #07525d !important;
}
@media (max-width: 600px) {
  .store-button,
  .coupon-category-button,
  .blog-category-button {
    font-size: 13px;
    padding: 7px 12px;
  }
}

/*
=============================================
--- A-Z Store Listing [my_custom_store_listing] ---
=============================================
*/
.sazl_wrapper {
  font-family: "Poppins", sans-serif;
  padding: 10px;
}
.sazl_wrapper *,
.sazl_wrapper *::before,
.sazl_wrapper *::after {
  box-sizing: border-box;
}
.sazl_wrapper a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.sazl_wrapper a:hover {
  color: #000;
}
.sazl_wrapper h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 25px 0;
  color: #222;
}
.sazl_wrapper .sazl_tabset_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.sazl_wrapper .sazl_tabset_nav a {
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 14px;
  margin: 4px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  min-width: 40px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.sazl_wrapper .sazl_tabset_nav a:hover {
  border-color: #3b82f6;
}
.sazl_wrapper .sazl_tabset_nav a.sazl_active {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
.sazl_wrapper .sazl_tab_panel {
  display: none;
}
.sazl_wrapper .sazl_tab_panel.sazl_active {
  display: block;
  animation: sazl_fadeIn 0.5s;
}
@keyframes sazl_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sazl_wrapper .sazl_grid_container ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 -10px;
}
.sazl_wrapper .sazl_store_item {
  width: 16.666%;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sazl_wrapper .sazl_store_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sazl_wrapper .sazl_store_item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.sazl_wrapper .sazl_store_item img {
  max-width: 80%;
  max-height: 70px;
  object-fit: contain;
}
.sazl_wrapper .sazl_store_item span {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  color: #555;
}
.sazl_wrapper .sazl_list_container {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}
.sazl_wrapper .sazl_list_container ul {
  list-style: none;
  padding: 0;
  columns: 3;
  column-gap: 30px;
}
.sazl_wrapper .sazl_list_container ul li {
  padding: 5px 0;
  break-inside: avoid;
}
.sazl_wrapper .sazl_list_container ul li a {
  font-size: 14px;
  font-weight: 500;
}
.sazl_wrapper .sazl_custom_content {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}
.sazl_wrapper .sazl_custom_content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .sazl_wrapper .sazl_store_item {
    width: 20%;
  }
}
@media (max-width: 992px) {
  .sazl_wrapper .sazl_store_item {
    width: 25%;
  }
  .sazl_wrapper .sazl_list_container ul {
    columns: 2;
  }
}
@media (max-width: 768px) {
  .sazl_wrapper .sazl_store_item {
    width: 33.333%;
  }
}
@media (max-width: 576px) {
  .sazl_wrapper .sazl_store_item {
    width: 33.333%;
  }
  .sazl_wrapper .sazl_list_container ul {
    columns: 2;
  }
  .sazl_wrapper .sazl_store_item a {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .sazl_wrapper .sazl_store_item {
    width: 33%;
  }
  .sazl_wrapper .sazl_list_container ul {
    columns: 2;
  }
}
