/** Shopify CDN: Minification failed

Line 798:3 Expected "}" to go with "{"

**/
/* ==========================================================================
   1. SHUBHAM CREATION - TRENDING PRODUCT GRID (5-COLUMN CENTERED)
   ========================================================================== */
.shubham-creation-trending-wrapper {
  padding: 40px 3% !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

.shubham-creation-trending-heading {
  text-align: center !important;
  width: 100% !important;
  color: #b8935c;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 35px;
  text-transform: capitalize;
}

.shubham-creation-grid-container {
  display: flex !important;
  flex-wrap: wrap !important;
  
  /* THE FIX: Changed from 'center' to 'flex-start' */
  justify-content: flex-start !important; 
  
  gap: 20px !important; 
  width: 100% !important;
  max-width: 1600px !important;
  margin: 0 auto !important; 
}

.shubham-creation-product-card {
  width: calc(20% - 16px) !important; 
  max-width: 300px !important; 
  min-width: 220px !important;
  background-color: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  text-align: left;
}

.shubham-creation-product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

@media screen and (max-width: 1400px) {
  .shubham-creation-product-card { width: calc(25% - 15px) !important; }
}

@media screen and (max-width: 1100px) {
  .shubham-creation-product-card { width: calc(33.333% - 14px) !important; }
}

@media screen and (max-width: 800px) {
  .shubham-creation-product-card { width: calc(50% - 10px) !important; }
}

@media screen and (max-width: 500px) {
  .shubham-creation-trending-wrapper { padding: 20px 10px !important; }
  .shubham-creation-grid-container { gap: 10px !important; }
  .shubham-creation-product-card { width: calc(50% - 5px) !important; min-width: unset !important; }
  .shubham-creation-btn { font-size: 11px !important; padding: 8px 2px !important; }
}

/* --- SHUBHAM CREATION ENLARGED SIZE BOXES (IMAGE 1 STYLE) --- */
.shubham-creation-size-badge {
  font-size: 13px !important; /* Slightly smaller to match Image 1 */
  padding: 6px 8px !important; 
  min-width: 32px !important; 
  text-align: center;
  border: 1px solid #454545ff !important; /* A darker, crisper gray */
  border-radius: 3px !important; 
  background-color: #ffffff !important;
  color: #333333 !important;
  margin-right: 6px !important; 
  margin-bottom: 8px !important;
  display: inline-flex !important; 
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase; 
  position: relative; /* Needed for the red cross to position correctly */
}

/* --- VISUAL SELECTED STATE FOR SIZES --- */
.shubham-creation-size-badge.selected {
  background-color: #222222 !important; /* Dark black background */
  color: #ffffff !important;            /* White text */
  border-color: #222222 !important;
}

/* Hover effect */
.shubham-creation-size-badge:hover {
  border-color: #333333 !important; /* Darker border on hover instead of gold, matches Image 1 better */
}

/* Sold Out styling - Creates the Red 'X' */
.shubham-creation-size-soldout {
  color: #b3b3b3 !important; /* Lightens the text */
  border-color: #e0e0e0 !important;
  cursor: not-allowed !important;
  text-decoration: none !important; /* Removes the standard text strike-through */
  
  /* This draws the exact Red X over the box using gradients */
  background-image: 
    linear-gradient(to bottom right, transparent calc(50% - 1px), #ff5757 calc(50% - 1px), #ff5757 calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(to top right, transparent calc(50% - 1px), #ff5757 calc(50% - 1px), #ff5757 calc(50% + 1px), transparent calc(50% + 1px)) !important;
}

.shubham-creation-sizes-container {
  margin-top: 10px;
  margin-bottom: 12px;
}



/* --- SHUBHAM CREATION PRICE STYLING --- */

/* The row container holding both prices */
.shubham-creation-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important; /* The space between the two prices */
  margin-top: 6px !important;
  margin-bottom: 8px !important;
}

/* The Old/Compare-at Price (Rs. 650.00) */
.shubham-price-compare {
  text-decoration: line-through !important; /* Adds the strike line */
  color: #999999 !important; /* Lighter gray color */
  font-size: 15px !important; /* Slightly smaller than the main price */
  font-weight: 400 !important; /* Regular text weight */
}

/* The New/Actual Price (Rs. 550.00) */
.shubham-creation-regular-price {
  font-weight: 700 !important; /* Makes it bold */
  font-size: 17px !important; /* Slightly larger text */
  color: #222222 !important; /* Dark solid black */
}



/* ==========================================================================
   2. SHUBHAM CREATION - PREMIUM FILTER BAR
   ========================================================================== */
.shubham-premium-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  padding: 12px 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.shubham-filter-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.shubham-filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shubham-filter-label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.shubham-sort-dropdown {
  padding: 8px 30px 8px 12px;
  border: 1px solid #EBEBEB;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23333333%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.shubham-custom-dropdown-wrapper {
  position: relative;
}

.shubham-custom-dropdown-trigger {
  background: none;
  border: none;
  font-size: 15px; 
  font-weight: 700;
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.shubham-caret {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 8px;
}

.shubham-custom-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 15px); 
  left: -15px; 
  background: #FFFFFF;
  min-width: 250px;
  border: 1px solid #EBEBEB;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06); 
  border-radius: 4px;
  padding: 20px; 
  z-index: 100;
}

.shubham-custom-dropdown-wrapper.active .shubham-custom-dropdown-content {
  display: block;
}

.shubham-checkbox-list {
  display: flex;
  flex-direction: column;
}

.shubham-scrollable {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 10px;
}

.shubham-checkbox-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
  margin-bottom: 16px; 
  cursor: pointer;
}

.shubham-checkbox-list input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 2px;
  accent-color: #b8935c; /* Gold tick */
}

/* Price Dual Slider */
.shubham-price-content {
  min-width: 260px;
}

.shubham-price-header {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.shubham-price-dash {
  color: #888;
  font-weight: 400;
}

.shubham-range-slider {
  position: relative;
  height: 4px;
  background-color: #EBEBEB;
  border-radius: 4px;
  margin: 0 5px 30px 5px;
}

.shubham-range-progress {
  position: absolute;
  height: 100%;
  background-color: #D3D3D3;
  border-radius: 4px;
  left: 0%;
  right: 0%;
}

.shubham-range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin: 0;
}

.shubham-range-slider input[type="range"]::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #222222;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  margin-top: -9px;
}

.shubham-range-slider input[type="range"]::-moz-range-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #222222;
  pointer-events: auto;
  cursor: pointer;
}

/* Filter Action Buttons */
.shubham-dropdown-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #EBEBEB;
  padding-top: 18px;
  margin-top: 8px; 
}

.shubham-clear-btn {
  background: none;
  border: none;
  font-size: 14px;
  color: #777; 
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.shubham-apply-btn {
  background-color: #b8935c;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.shubham-apply-btn:hover {
  background-color: #a07d4c;
}

.shubham-reset-all-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: bold;
  color: #D32F2F; 
  text-decoration: underline;
  cursor: pointer;
  margin-left: auto;
}


/* ==========================================================================
   3. SHUBHAM CREATION - MAIN PRODUCT PAGE (UNIQUE LAYOUT)
   ========================================================================== */
.shubham-product-container {
  padding: 50px 20px;
  max-width: 1100px; /* Reduced to pull layout closer and make it attractive */
  margin: 0 auto;
  font-family: inherit;
}

.shubham-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

/* Left Side Media */
.shubham-product-media {
  flex: 1 1 45%;
  max-width: 480px; /* Stops image from stretching on large screens */
  min-width: 320px;
  position: sticky; 
  top: 40px;
  align-self: flex-start;
}

.shubham-main-image-wrapper img {
  width: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  border: 1px solid #EBEBEB;
}

.shubham-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  overflow-x: auto;
}

.shubham-thumbnail {
  width: 90px;
  height: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.2s;
}

.shubham-thumbnail.active {
  border-color: #222222;
}

.shubham-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side Info */
.shubham-product-info {
  flex: 1 1 45%;
  max-width: 500px;
  min-width: 320px;
  padding-top: 10px;
}

.shubham-product-vendor {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 8px;
}

.shubham-urgency-tag {
  color: #D32F2F; 
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.shubham-creation-product-title {
  font-size: 15px !important; /* Increased from 12px. Change to 16px if you want it even bigger! */
  font-weight: 600 !important; /* Makes the text slightly bolder so it's easier to read */
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}

/* Product Page Pricing */
.shubham-product-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.shubham-price-compare {
  text-decoration: line-through;
  color: #888;
  font-size: 18px;
  font-weight: 600;
}

.shubham-price-current {
  font-weight: 700;
  font-size: 24px;
  color: #222;
}

.shubham-badge-free-shipping {
  background: #A69E6A; 
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
  font-weight: 600;
}

.shubham-taxes-text {
  font-size: 12px;
  color: #888;
  margin-top: 0;
  margin-bottom: 15px;
}

.shubham-shipping-promo-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* Product Page Variant Selectors */
.shubham-option-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: #333;
}

.shubham-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.shubham-option-btn {
  padding: 8px 20px;
  border: 1px solid #EBEBEB;
  background: #FFFFFF;
  cursor: pointer;
  font-size: 13px;
  border-radius: 30px; 
  transition: all 0.2s ease;
  color: #555;
}

.shubham-option-btn:hover {
  border-color: #222;
}

.shubham-option-btn.selected {
  border-color: #222;
  background: #222;
  color: #FFFFFF;
}

.shubham-option-btn.sold-out {
  opacity: 0.4;
  text-decoration: line-through;
}

/* Product Page Quantity */
.shubham-qty-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #222;
  width: 120px;
  height: 45px;
  margin-bottom: 25px;
}

.shubham-qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 100%;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

.shubham-qty-input {
  width: 40px;
  height: 100%;
  text-align: center;
  border: none;
  font-size: 15px;
  outline: none;
  -moz-appearance: textfield;
}

.shubham-qty-input::-webkit-outer-spin-button,
.shubham-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Product Page Actions */
.shubham-product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.shubham-btn-buy-now,
.shubham-btn-add-cart {
  flex: 1;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}

.shubham-btn-buy-now {
  background: #FFFFFF;
  color: #222;
  border: 1px solid #222;
}

.shubham-btn-add-cart {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
}

.shubham-btn-buy-now:hover,
.shubham-btn-add-cart:hover {
  opacity: 0.8;
}

/* Trust Badges & Promo */
.shubham-promo-banner {
  background-color: #FCEAEA; 
  color: #C32B2B; 
  text-align: center;
  padding: 15px;
  border-radius: 30px; 
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 25px;
}

.shubham-trust-section {
  margin-bottom: 25px;
}

.shubham-trust-heading {
  font-size: 14px;
  margin-bottom: 12px;
  color: #222;
}

.shubham-payment-icons {
  display: flex;
  gap: 40px; 
  align-items: center;
  flex-wrap: wrap; 
  margin-top: 10px;
}

.shubham-payment-icons img {
  height: 26px; 
  width: auto;
  object-fit: contain;
  margin: 0; 
}

.shubham-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.shubham-feature-box {
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  padding: 20px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #444;
  background: #FCFCFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shubham-feature-icon {
  font-size: 20px;
}

.shubham-product-description {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid #EBEBEB;
  padding-top: 30px;
}

/* Mobile Adjustments for Product Page */
@media (max-width: 768px) {
  .shubham-product-grid {
    flex-direction: column;
    gap: 25px;
  }
  .shubham-product-media {
    position: static;
    max-width: 100%;
  }
  .shubham-product-info {
    max-width: 100%;
  }
  .shubham-product-title {
    font-size: 26px;
  }
  .shubham-feature-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}




/* ==========================================================================
   SHUBHAM CREATION - MOBILE PRODUCT GRID FIXES
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* 1. Reduces inner spacing on mobile so things aren't cramped */
  .shubham-creation-card-info {
    padding: 12px 10px 15px 10px !important; 
  }
  
  /* 2. Adjusts title size and allows it to wrap normally */
  .shubham-creation-product-title {
    font-size: 13px !important; 
    white-space: normal !important; 
    margin-bottom: 6px !important;
  }
  
  /* 3. STRICT FIX: Stops the price from breaking into two lines */
  .shubham-creation-price-row {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  
  .shubham-price-compare, 
  .shubham-creation-regular-price {
    white-space: nowrap !important; /* Forces "Rs. 1550" to stay strictly on one line */
  }
  
  .shubham-price-compare { font-size: 12px !important; }
  .shubham-creation-regular-price { font-size: 14px !important; }
  
  /* 4. Scales down the size variant boxes slightly for mobile screens */
  .shubham-creation-size-badge {
    font-size: 11px !important;
    padding: 4px 6px !important;
    min-width: 28px !important;
    margin-right: 4px !important;
    margin-bottom: 6px !important;
  }
  
  /* 5. FIX: Keeps the buttons side-by-side on mobile */
  .shubham-creation-add-to-cart-form {
    flex-direction: row !important; /* Forces them side-by-side instead of stacking */
    gap: 6px !important; /* A slightly smaller gap so they fit */
    margin-top: 10px !important;
  }
  
  .shubham-creation-btn {
    flex: 1 !important; /* Makes sure they both take exactly 50% of the space */
    width: 50% !important; 
    padding: 8px 2px !important; /* Reduces inside spacing so text fits */
    font-size: 12px !important; /* Slightly smaller font to prevent overflowing */
  }