/* =========================================================
   RESET & GLOBAL
========================================================= */
    body, h1, h2, p, nav {
    font-family: 'Montserrat', sans-serif;
     color: #444;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}



/* Cart Icon */
.cart a {
    color: #333;
    font-size: 22px;
    position: relative;
}

.cart .count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #ff3d3d;
    color: #fff;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 50px;
}

/* =========================================================
   HERO SECTION
========================================================= */
.ecommerce-hero-1 {
    padding: 100px 0;
}

.ecommerce-hero-1 .promo-badge {
    background: #0d6efd;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.ecommerce-hero-1 h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.ecommerce-hero-1 h1 span {
    color: #0d6efd;
}

.ecommerce-hero-1 p {
    margin: 20px 0;
    color: #555;
}

/* Buttons */
.hero-cta .btn-shop {
    background: #0d6efd;
    color: #fff;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 15px;
    transition: 0.3s;
}

.hero-cta .btn-shop:hover {
    background: #0b5ed7;
}

.hero-cta .btn-collection {
    background: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    padding: 12px 28px;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-cta .btn-collection:hover {
    background: #0d6efd;
    color: #fff;
}

/* Features */
.hero-features {
    display: flex;
    margin-top: 30px;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-features i {
    color: #0d6efd;
    font-size: 20px;
}

/* Image Section */
.hero-image {
    position: relative;
}

.hero-image .main-product {
    width: 100%;
    border-radius: 20px;
}

/* Floating Products */
.floating-product {
    position: absolute;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 130px;
}

.product-1 {
    left: 0;
    top: -20px;
}

.product-2 {
    right: -20px;
    top: 35%;
}

.floating-product img {
    width: 90px;
    border-radius: 10px;
    margin: 0 auto;
}

.product-info {
    margin-top: 8px;
    text-align: center;
}

.product-info h4 {
    font-size: 16px;
    margin: 0;
}

.product-info .price {
    color: #0d6efd;
    font-weight: 600;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #ff3d3d;
    color: #fff;
    border-radius: 50%;
    height: 90px;
    width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.discount-badge .percent {
    font-size: 24px;
    font-weight: 700;
}

.discount-badge .text {
    font-size: 14px;
}

/* =========================================================
   INFO CARDS
========================================================= */
.info-cards {
    padding: 60px 0;
    background: #f2f2f2;
}

.info-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
    height: 100%;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.info-card .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card .icon-box i {
    font-size: 32px;
    color: #0d6efd;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.info-card p {
    color: #555;
    font-size: 15px;
}


.footer-newsletter {
  padding: 50px 0;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.footer-newsletter h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-newsletter p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.newsletter-form {
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  padding: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  width: 100%;
}

.newsletter-form input {
  border: none;
  padding: 12px 20px;
  width: 100%;
  outline: none;
  font-size: 15px;
}

.newsletter-form button {
  background: #0d6efd;
  border: none;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #0b5ed7;
}

/* Messages */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  font-size: 15px;
  margin-top: 10px;
}

.php-email-form .loading {
  color: #555;
}

.php-email-form .sent-message {
  color: #28a745;
}

.php-email-form .error-message {
  color: #dc3545;
}
