/** Shopify CDN: Minification failed

Line 50:8 Expected identifier but found whitespace
Line 50:10 Unexpected "{"
Line 50:19 Expected ":"
Line 50:43 Expected ":"
Line 51:9 Expected identifier but found whitespace
Line 51:11 Unexpected "{"
Line 51:20 Expected ":"
Line 51:44 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:premium_footer (INDEX:53) */
.footer-premium {
  background: linear-gradient(135deg,rgb(46, 45, 45),rgb(25, 24, 24));
  color: #ffffff;
  padding: 70px 20px 40px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 15px;
  opacity: 0.9;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: {{ section.settings.icon_size }}px;
  height: {{ section.settings.icon_size }}px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  overflow: hidden;
}

.footer-social img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.footer-social a:hover {
  background: #caa14a;
  transform: translateY(-3px);
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #caa14a;
  padding-left: 5px;
}

.newsletter-text {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.newsletter-form {
  position: relative;
  max-width: 320px;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 55px 14px 18px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: #caa14a;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: #b88c30;
  transform: translateY(-50%) scale(1.05);
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* icon css code */
.footer-contact {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 35px;
  opacity: 0.9;
}

.contact-icon {
  width: 35px;
  height: 20px;
  color: #caa14a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:premium_footer */