/** Shopify CDN: Minification failed

Line 443:13 Expected identifier but found whitespace
Line 443:25 Unexpected "0.2s"

**/
/* Country Zone Section Styling */
.country-zone-section {
  margin: 15px 0;
  font-family: inherit;
}

.modal-header h3 {
    font-weight: 700;
    margin: 0;
    font-size: 20px;
    color: #2a3749;
    display: inline-block;
    vertical-align: middle;
}


.country-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.country-note {
    font-size: 12px;
    margin-top: -10px;
}

.country-restrictions-link {
  text-decoration: underline;
  background:none;
  border:0px;
  cursor: pointer;
  color: #3182ce;
  transition: color 0.2s;
  padding:0px;
}

.country-restrictions-link:hover {
  color: #2c5282;
}

/* Fixed Modal Styling - Guaranteed Centering */
.country-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  overflow: auto;
  padding: 20px 0;
}

.country-modal.show {
  display: block;
}

.modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

/* Modal Header */
.modal-header {
  background-color:var(--custom-color-5);
  padding: 20px;
  border-bottom: 1px solid #e6f0fd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header img {
  width: 20px;
  height: 20px;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #2a4365;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #718096;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.close-modal:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #4a5568;
}

/* Search Section */
.search-box-wrapper {
  padding: 20px;
  position: relative;
  border-bottom: 1px solid #edf2f7;
}

.search-box {
  width: 100%;
  padding: 10px 12px 10px 40px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  margin: 15px 0px ;
}

.search-box:focus {
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

/* Country List */
.country-list-container {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0 20px 20px;
}

.country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.country-list li {
  padding: 12px 16px;
  background: var(--custom-color-8);
  border-radius: 8px;
  font-size: 15px;
  color: #4a5568;
  transition: all 0.2s;
  border: 1px solid #edf2f7;
}

/* Status Colors */
.valid-country {
  color: #28a745;
}

.invalid-country {
  color: #dc3545;
  font-size:17px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }
  
  .country-list {
    grid-template-columns: 1fr;
  }
  
  .modal-header,
  .search-box-wrapper {
    padding: 15px;
  }
}

@media (max-height: 600px) {
  .country-list-container {
    max-height: 50vh;
  }
}

/* New CSS for side-by-side layout */
.country-zone-wrapper {
  padding:8px;
  background: #fcfcfc;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin: 0px;
}

.country-zone-heading {
  font-weight: 500;
  font-size: 15px;
  min-width: 120px;
  padding-top: 3px;
}

.country-zone-content {
  flex: 1;
}

.country-status-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Adjust existing country-zone-section to work with new layout */
.country-zone-section {
  margin: 0; /* Remove margin since wrapper handles it */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .country-zone-wrapper {
    display:none;
    
  }
  
  .country-zone-heading {
    min-width: 100%;
  }
}














/*MOBILE CSSSSSSSSSSSSS*/

/* ============================================= */
/* MOBILE COUNTRY ZONE SECTION (ONLY SHOWS <768px) */
/* ============================================= */

.mob-country-zone-section {
  display: none; /* Hidden by default - shows via media query */
 margin: 0 0 25px;
    padding: 10px 5px;
    background: #f7f7f7;
    /* border-radius: 10px; */
    border-top: 1px solid #e1e3e5;
    /* box-shadow: 0 2px 8px #0000000d; */
    border-bottom: 1px solid #e1e3e5;
}

/* Status Row */
.mob-status-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mob-status-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}

/* Note Row */
.mob-note-container {
  font-size: 14px;
  color: #495057;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

/* Link Button */
.mob-region-link {
  background: none;
  border: none;
  padding: 0;
  color: #2c7be5;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.mob-region-link:hover {
  color: #1a68d1;
}

/* Status Colors */
.mob-status-valid {
  color: #28a745;
}
.mob-status-invalid {
  color: #dc3545;
}

/* ============================================= */
/* MOBILE MODAL POPUP STYLES */
/* ============================================= */

.mob-country-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 10000;
  overflow: auto;
  padding: 20px 0;
}

.mob-modal-content {
  background-color: #fff;
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Modal Header */
.mob-modal-header {
  background: var(--custom-color-5);
  width: 100%;
  padding: 25px 25px;
}
.mob-modal-header h3 {
    font-weight: 700;
    margin: 0;
    font-size: 20px;
    color: #2a3749;
    display: inline-block;
    vertical-align: middle;
}

.heading-svg {
    display: inline-block;
}

/*Body Box*/
.mob-modal-body{
   padding:20px;   
}

/* Close Button */
.mob-close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #6c757d;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0 10px;
}
.mob-close-modal:hover {
  color: #495057;
}

/* Search Box */
.mob-search-box {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 15px center;
}
.mob-search-box:focus {
  outline: none;
  border-color: #2c7be5;
  box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.1);
}

/* Country List */
.mob-country-list-container {
  max-height: 60vh;
  overflow-y: auto;
}

.mob-country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.mob-country-list li {
  padding: 12px 16px;
  background: var(--custom-color-8);
  border-radius: 8px;
  font-size: 15px;
  color: #4a5568;
  transition: all 0.2s;
  border: 1px solid #edf2f7;
  margin:10px;
  align-self: center;
}
  transition: background 0.2s;
}
.mob-country-list li:last-child {
  border-bottom: none;
}
.mob-country-list li:hover {
  background-color: #f8f9fa;
}

.mob-country-zone-heading {
  font-weight: 500;
  font-size: 16px;
  min-width: 120px;
  padding-top: 3px;
  margin-bottom:12px;
}

/* ============================================= */
/* MOBILE ONLY MEDIA QUERY */
/* ============================================= */

@media (max-width: 768px) {
  .mob-country-zone-section {
    display: block;
  }
}

/* Responsive Tweaks */
@media (max-width: 480px) {
  .mob-modal-content {
    padding: 15px;
  }
  .mob-country-list li {
    padding: 10px 12px;
  }
}

/* Enhance mobile styling to match desktop layout more closely */
.mob-country-zone-section {
  background: #fcfcfc; /* Match desktop background */
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  padding: 8px;
  margin: 0 0 25px;
  font-family: inherit;
}

.mob-country-zone-heading {
  font-weight: 500;
  font-size: 15px; /* Match desktop */
  min-width: 120px;
  padding-top: 3px;
  margin-bottom: 6px;
}

.mob-status-container {
  display: flex;
  align-items: center;
  gap: 6px; /* Match desktop gap */
  margin-bottom: 5px;
}

.mob-status-text {
  font-weight: 700;
  font-size: 18px; /* Match .country-status */
  color: #2d3748;
}

.mob-note-container {
  font-size: 12px; /* Match .country-note */
  margin-top: 10px;
  color: #4a5568;
}

.mob-region-link {
  color: #3182ce; /* Match desktop */
}

.mob-region-link:hover {
  color: #2c5282;
}
