/*!
Theme Name: aamra_theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aamra_theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

aamra_theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

.ttm-page-title-row {
    padding: 50px 0;
}
section.history-section {
    padding-bottom: 50px;
}

/*Product List*/
  :root {
      --cream: #fdf6ee;
      --blush: #f2c4a8;
      --terracotta: #c8623a;
      --deep: #2b1f18;
      --mid: #6b4e3d;
      --soft: #d4a98a;
      --shadow: 0 8px 40px rgba(43,31,24,0.10);
      --shadow-hover: 0 24px 60px rgba(43,31,24,0.18);
    }


    /* ── HEADER ── */
    .page-header { text-align: center; padding: 60px 24px 44px; }
    .eyebrow {
      font-size: 16px; font-weight: 500;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--terracotta); margin-bottom: 12px;
    }
    .page-header h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 700; color: var(--deep); line-height: 1.1;
    }
    .page-header h1 em { font-style: italic; color: var(--terracotta); }
    .page-header .subtitle{
    font-size: 22px;
    font-weight: 300;
    color: var(--mid);
    max-width: 500px;
    margin: 14px auto 0;
    line-height: 1.2;
}
    .header-deco span { font-size: 26px; animation: float 3s ease-in-out infinite; }
    .header-deco span:nth-child(2) { animation-delay: 0.5s; }
    .header-deco span:nth-child(3) { animation-delay: 1s; }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-6px); }
    }

    /* ── CARD ── */
    .product-card {
      background: #fff;
      border: none;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
      display: flex; flex-direction: column; height: 100%;
      animation: slideUp 0.6s ease both;
    }
    .product-card:hover {
      transform: translateY(-10px) scale(1.012);
      box-shadow: var(--shadow-hover);
    }
    .col:nth-child(1) .product-card { animation-delay: 0.05s; }
    .col:nth-child(2) .product-card { animation-delay: 0.15s; }
    .col:nth-child(3) .product-card { animation-delay: 0.25s; }
    .col:nth-child(4) .product-card { animation-delay: 0.35s; }
    .col:nth-child(5) .product-card { animation-delay: 0.45s; }
    .col:nth-child(6) .product-card { animation-delay: 0.55s; }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Image */
    .card-img-wrap {
      position: relative; height: 230px; overflow: hidden; flex-shrink: 0;
      background: linear-gradient(135deg, #fde8d8, #f5cdb2);
    }
    .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .product-card:hover .card-img-wrap img { transform: scale(1.06); }
    .img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center; font-size: 72px;
    }
    .badge-custom {
      position: absolute; top: 14px; left: 14px;
      background: var(--terracotta); color: #fff;
      font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
    }
    .price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--bs-orange);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 30px;
    border-radius: 100px;
}

    /* Body */
    .card-body { padding: 22px 22px 0; flex: 1; }
    .card-body h2 {
      font-size: 26px; font-weight: 700; color: var(--deep); margin-bottom: 15px;
    }
.short-desc {
    font-weight: 400;
    color: #464343;
    line-height: 1.65;
    margin-bottom: 16px;
    font-size: 16px;
}

    /* Bullet list */
    .feature-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 7px; }
    .feature-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 16pxx; color: var(--mid); line-height: 1.5; }
    .feature-list li::before { content: '✦'; color: var(--terracotta); font-size: 14px; flex-shrink: 0; margin-top: 4px; }

    /* Divider */
    .card-divider { height: 1px; background: linear-gradient(to right, transparent, var(--blush), transparent); margin: 0 22px; }

    /* Card footer */
    .card-footer-custom { padding: 18px 22px 22px; }
    .btn-order {
      display: block; width: 100%; padding: 13px 20px;
      background: var(--deep); color: #fff; border: none; border-radius: 14px;
       font-size: 13.5px; font-weight: 500;
      letter-spacing: 0.06em; cursor: pointer; text-align: center;
      position: relative; overflow: hidden; transition: transform 0.2s ease;
    }
    .btn-order::after {
      content: ''; position: absolute; inset: 0;
      background: var(--terracotta); transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 0;
    }
    .btn-order:hover::after { transform: translateX(0); }
    .btn-order:active { transform: scale(0.97); }
    .btn-order span {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }



/*End*/


/*About Us*/

  .about-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 24px;
  }

  .top-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .top-line .bar { width: 36px; height: 2px; background: #1D9E75; }
  .top-line .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1D9E75;
  }

  .main-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    color: #111;
    max-width: 540px;
    margin-bottom: 36px;
  }
  .main-heading em { font-style: normal; color: #1D9E75; }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

.body-text {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 16px;
}

  .quote-block {
    border-left: 2px solid #1D9E75;
    padding: 14px 18px;
    background: #f2faf6;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
  }
  .quote-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
  }

  .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .pill {
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid #d0d0cc;
    color: #095e43;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
  }
  .pill i { font-size: 13px; color: #1D9E75; }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e4;
  }
  .stat-item { text-align: center; }
  .stat-num { font-size: 28px; font-weight: 700; color: #1D9E75; line-height: 1; }
  .stat-sub { font-size: 11.5px; color: #999; margin-top: 5px; line-height: 1.4; }

  .cta-row {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: #1D9E75;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
  }
  .btn-primary:hover { background: #0F6E56; }
  .btn-outline {
    background: transparent;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color .2s;
  }
  .btn-outline:hover { border-color: #1D9E75; color: #1D9E75; }

  .feat-list { display: flex; flex-direction: column; gap: 12px; }

  .feat-card {
    background: #fff;
    border: 1px solid #e8e8e4;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color .2s;
  }
  .feat-card:hover { border-color: #9FE1CB; }
  .feat-card.accent {
    border-left: 2px solid #1D9E75;
    border-radius: 0 12px 12px 0;
  }

  .feat-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 9px;
    background: #E1F5EE;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feat-icon i { font-size: 19px; color: #0F6E56; }

  .feat-title { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 4px; }
  .feat-desc { font-size: 12.5px; color: #777; line-height: 1.55; }

  @media (max-width: 640px) {
    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .main-heading { font-size: 24px; }
  }

  /*End*/


.white-bg {
    background: #fff;
}









.header-logo img {
    width: 280px;
}
header.style-2 .main-menu ul > li a {
    text-transform: uppercase;
}
div#ordernow {
    background: #fff;
}




img#logo-img {
    width: 215px;
}
ul >li.dropdown.nav-item a.nav-link::after{
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}
.dgwt-wcas-search-wrapp{
    position: unset !important;
}
.th-product:hover .product-img:before {
    opacity: 0 !important;
}
.th-product .product-img {
    margin: 0 0 10px 0;
}
.th-product .product-title {
    font-size: 40px;
    margin: 5px 0 10px 0;
}
.th-product .price {
    color: #f8721f;
    font-size: 22px;
    margin-bottom: unset;
    margin-top: unset;
}
.pet_details p {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
ul.item_list {
    margin: 0 auto;
    display: table;
}
ul.item_list li {
    font-size: 18px !important;
    color: #000 !important;
}
div#contact-sec {
    background: #f6f2ed;
}

a.th-btn.style-border2.th-btn-sm.mt-20 {
    font-size: 22px;
    background: #f4e11b;
}



/*Woocommerce*/
.woocommerce ul.products li.product {
    border: 1px solid rgba(0,0,0,.1);
    text-align: center;
    padding-bottom: 10px;
    border-radius: 8px;
}
.woocommerce ul.products li.product:hover {
    border-color: #ffd200
}
h2.woocommerce-loop-product__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 0 10px !important;
    font-size: 14px !important;
}
.woocommerce ul.products li.product .button {
    background: #ffd200;
    color: #000;
    font-size: 14px;
    margin-top: 0;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #dd3333;
    font-weight: bold;
    margin-top: .5em;
    font-size: 16px;
}
.woocommerce .woocommerce-ordering select {
    padding: 7px;
    border-color: #ede9e9;
    border-radius: 10px;
    outline: 0;
}
.woocommerce span.onsale {
    background-color: #03a297;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 30%;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 65%;
}
.woocommerce div.product .product_title { 
    font-size: 35px;
    margin-bottom: 30px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #03a297;
    font-size: 2em;
    margin-bottom: 20px;
}
.woocommerce-product-details__short-description {
    margin-bottom: 20px;
}
.woocommerce div.product form.cart .variations select {
    padding: 6px;
    border-radius: 10px;
    outline: 0;
}
.product_meta > span {
    display: block;
}
.woocommerce-tabs.wc-tabs-wrapper h1,
.woocommerce-tabs.wc-tabs-wrapper h2,
.woocommerce-tabs.wc-tabs-wrapper h3,
.woocommerce-tabs.wc-tabs-wrapper h4,
.woocommerce-tabs.wc-tabs-wrapper h5,
.woocommerce-tabs.wc-tabs-wrapper h6 {
    font-size: 30px;
    padding: 15px 0;
}
.woocommerce-tabs.wc-tabs-wrapper p {
    padding-bottom: 15px;
}
form.woocommerce-form.woocommerce-form-track-order.track_order input {
    padding: 10px;
    border-radius: 10px;
    outline: 0;
    border: 2px solid #03a297;
}
figure.image.image_size_135 img {
    width: 135px;
}
li.footer-widget--post__item strong {
    color: #f37b1f;
}
.main-slider-one__bg::before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.form-inner p {
    margin-bottom: 0;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.primary-btn1 {
    background: linear-gradient(90deg, #F86CA7 0%, #FF7F18 100%);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    max-width: 300px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.primary-btn1:hover {
    background: #000;
}




@media (max-width:767px){    
    .mobile-logo-wrap img {
        width: 85%;
    }
}





