body {
    text-align:center;
    font-family:Arial, Helvetica, sans-serif;
}

main {
    padding-top: 80px; /* keep content visible below the fixed navbar */
}

html {
    scroll-behavior: smooth;
}




* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style:none;
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 50px;
    height: 80px;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    white-space: nowrap;
}


.navbar .logo {
    display: flex;
    list-style:none;
    font-size:14px; /* from claude ai*/
}


@media (max-width:768px) {
     header {
        display:flex;
        align-items:center;
        justify-content: space-between;
        gap:10px;
     }
     header ul li {
        display: none; /* hide on mobile */
     }
     header ul li a {
        font-size:12px;
        padding: 4px 6px;
     }
     .logo {
        display: inline-block;
        white-space:nowrap;
     }
     form .search-bar{
        display:none;
     }
}



/*padding label */

label {
    padding-left:10px;
}


.navbar ul {
    display: flex;
}

.navbar ul li {
    margin: 0 5px;
}

.navbar ul li a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding:10px 20px;
    border-radius: 5px;
}
.navbar ul li a:hover, .navbar ul li a.active {
    background:#d6ac78;
    color: #fff;
}


.search-bar {
    display:flex;
}

.search-bar input {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px; /* Rounds the left corners */
  outline: none;
}

.search-bar button {
  padding: 5px 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0; /* Rounds the right corners */
  cursor: pointer;
}


/*mobile reponsive*/

.check, .checkbtn {
    display: none;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background: #ffffff;
    }
    .checkbtn {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: #555;
        float: right;
        line-height: 80px;
        margin-right: 20px;
}
        .check{
            display:none;
        }
         /* Show the list ONLY when the checkbox is toggled */
    #check:checked ~ ul {
        display: flex;
    }
    
    .navbar ul li {
        display:block;
        margin: 20px 0;
        line-height: 30px;
    }
    .navbar ul li a{
        font-size: 20px;
    }
    #check:checked ~ ul {
        display:flex;
        left: 0;
    }
    .service-container {
        grid-template-columns: 1fr;
  }
  .service-item img {
    height:auto;
  }
  .navbar {
    padding: 0 20px;
  }
  .content{
    height:auto;
    min-height: 60vh;
    padding: 40px 20px;
  }
}


.content {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.back-video{
    position: absolute;
    right:0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    filter: brightness(0.6);
}

.conten h1{
    margin-bottom: 10px;
}

.services {
    padding: 50px 5%;
    background: #f9f9f9;
}

.service-detail {
    padding: 90px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.service-detail-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-detail-text p {
    line-height: 1.8;
    color: #444;
    font-size: 18px;
    margin-bottom: 25px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-overview,
.service-benefits {
    padding: 50px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.service-overview h2,
.service-benefits h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    text-align: left;
}

.service-feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.service-feature-card p {
    color: #555;
    line-height: 1.7;
}

.service-benefits p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.service-benefits ul {
    display: grid;
    gap: 12px;
    list-style: disc inside;
    color: #444;
    font-size: 16px;
}

@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-feature-grid {
        grid-template-columns: 1fr;
    }
}

.service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    border:2px solid red;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-link-btn {
    display: inline-block;
    margin-top: auto;
    padding: 12px 18px;
    background: #d6ac78;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.3s;
}

.service-link-btn:hover {
    background: #b57a4e;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}


.about{
    padding-top:50px;
}

.about p{
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    padding-top:10px;
}


.about .stats {
    padding-top:10px;
}

.about button {
    margin-top:10px;
    width: 150px;
    background: #555;
    color: #fff;
    border: none;
    padding: 10px 0 10px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form{
    line-height:1.6;

}

.contact-form form{
    padding-top:10px;
}
.contact-details{
    padding-top:30px;
    line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 50px 5%;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.products-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.products-section > p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.products-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-filter {
    flex: 1;
    min-width: 250px;
}

.product-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.product-search-input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.view-controls {
    display: flex;
    gap: 10px;
}

.cart-toggle-btn, .wishlist-toggle-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.cart-toggle-btn:hover, .wishlist-toggle-btn:hover {
    border-color: #ff6b6b;
    background: #fff5f5;
}

.cart-count, .wishlist-count {
    background: #ff6b6b;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: #ff6b6b;
}

.product-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn:hover, .wishlist-btn.active {
    background: #ff6b6b;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: white;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-breed {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.product-details {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.product-details strong {
    color: #333;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.star-rating {
    color: #ffc107;
}

.rating-score {
    color: #777;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b6b;
}

.add-to-cart-btn {
    flex: 1;
    padding: 10px 15px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.add-to-cart-btn:hover {
    background: #ee5a52;
    transform: translateY(-2px);
}





/* ===== CART & WISHLIST SIDEBARS ===== */
.cart-sidebar, .wishlist-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active, .wishlist-sidebar.active {
    right: 0;
}

.cart-header, .wishlist-header {
    padding: 20px;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 2001;
}

.cart-header h3, .wishlist-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #333;
}

.cart-items, .wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item, .wishlist-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cart-item img, .wishlist-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info, .wishlist-item-info {
    flex: 1;
}

.cart-item-name, .wishlist-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.cart-item-price, .wishlist-item-price {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 13px;
}

.remove-btn, .move-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

.remove-btn:hover, .move-btn:hover {
    background: #ee5a52;
}

.move-btn {
    background: #4CAF50;
}

.move-btn:hover {
    background: #45a049;
}

.cart-total {
    padding: 20px;
    border-top: 2px solid #eee;
    background: #f9f9f9;
}

.cart-total p {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #45a049;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    position: relative;
    left: 105%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 50px 5%;
    background: #f9f9f9;
    width: 100vw;
    box-sizing: border-box;
}

.reviews-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 1280px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.review-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.review-meta {
    color: #999;
    font-size: 12px;
}

.reviews-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .order-row {
        grid-template-columns: 1fr;
    }

    @media (max-width: 520px) {
        .products-grid {
            grid-template-columns: 1fr;
        }
    }

    .cart-sidebar, .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }

    .products-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-filter {
        min-width: auto;
    }

    .view-controls {
        width: 100%;
    }

    .cart-toggle-btn, .wishlist-toggle-btn {
        flex: 1;
    }

    .product-card {
        margin-bottom: 10px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
.contact-details form{
    padding-top:10px;
}

footer{
    padding-top:10px;
}



.footer-container {
    display: flex;
    justify-content: space-between; /* Pushes one left, one right */
    align-items: flex-start;       /* Aligns items at the top */
    padding: 40px;
    gap: 50px;                     /* Ensures they don't touch on small screens */
    flex-wrap: wrap;               /* Makes it stack on mobile automatically */
}

.footer-section {
    flex: 1;                       /* Makes both sections equal width */
    min-width: 300px;              /* Prevents them from getting too skinny */
}

.long-input {
    width: 100%;                   /* Lengthens your input box as requested */
    padding: 10px;
    margin-bottom: 10px;
}

.order-box,
.contact-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    padding: 25px;
    margin-top: 25px;
}

.order-box h4,
.contact-box h3 {
    margin-bottom: 18px;
    font-size: 20px;
}

.order-form {
    display: grid;
    gap: 15px;
}

.order-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.order-row input,
.order-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
}

.order-form textarea {
    min-height: 110px;
    resize: vertical;
}

.order-form-note {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.my-btn {
    width: 100%;
    padding: 12px 18px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.my-btn:hover {
    background: #e55a5a;
}

.copyright {
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding: 20px;
}


#ourdog {
    grid-column: 1 / -1;
    text-align: center;
}

.puppy-gallery {
    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding:0 15px;
    width:100%;

}

.puppy-gallery .thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.puppy-gallery .thumb:hover { transform: scale(1.03); }


.buy-now-btn button {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.buy-now-btn button:hover {
  background: #128c7e;
}


.footer-container button {
    height: 30px;
    width: 120px;
    background: #d6ac78;
}

.footer-container button.my-btn{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}



