* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #f0e8e0 0%, #e8dccf 100%);

    margin: 0;
    color: #4e3c2a;
}

header {
    background: #faf7f3;
    box-shadow: 0 2px 16px rgba(80,60,40,0.06);
    padding: 2.2rem 0 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    position: relative;
  }
  
  .header-paw-print {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 3rem;
    width: auto;
    opacity: 0.6;
    z-index: 1;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 5em;
    width: 4.5em;
    vertical-align: middle;
  }
  
  .logo-name {
    height: 3.5em;
    width: 18em;
    vertical-align: middle;
  }
  
  .social-links {
    display: flex;
    margin-top: -1em;
    gap: 1rem;
    margin-right: 1em;
  }
  
  .social-links a{
      font-size: 1.5em;
  }
  
  .social-link {
    color: #bfa07a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.5rem;
  }
  
  .social-link:hover {
    color: #8b6f4d;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(139,111,77,0.2);
  }
  
  .main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-link {
    color: #bfa07a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-right: -0.5em;
  }
  
  .nav-link:hover {
    color: #8b6f4d;
    background: rgba(191,160,122,0.1);
    transform: translateY(-2px);
  }
  
  .breadcrumb {
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.8);
    margin: 1rem 2rem 0 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .breadcrumb a {
    color: #bfa07a;
    text-decoration: none;
    font-weight: 500;
  }
  
  .breadcrumb a:hover {
    color: #8b6f4d;
  }
  
  .breadcrumb span {
    color: #6d5c4a;
    font-weight: 600;
  }
  
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-intro {
    margin-bottom: 2.5em;
    text-align: center;
}

.about-intro h1 {
    font-size: 2.4em;
    font-weight: 600;
    color: #6d4c2a;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 0.3em;
    margin-top: 0.2em;
    position: relative;
    background: none;
}
.about-intro h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #e2d6c3;
    border-radius: 2px;
    margin: 0.6em auto 0 auto;
    opacity: 0.8;
}
.about-intro p {
    text-align: center;
    color: #7a5c3a;
    font-size: 1.08em;
    margin-bottom: 1.5em;
    margin-top: 0.2em;
    opacity: 0.85;
}

.menu-section {
    max-width: 900px;
    margin: 2.5em auto;
    background: linear-gradient(135deg, #fbeee6 0%, #fff 100%);
    border-radius: 18px;
    box-shadow: 0 1px 8px rgba(80,60,40,0.04);
    padding: 2.5em 1.5em 2.5em 1.5em;
    position: relative;
}

.menu-paw-print {
    position: absolute;
    top: 18px;
    right: 32px;
    height: 2.7em;
    width: auto;
    opacity: 0.55;
    z-index: 2;
    pointer-events: none;
}

.menu-category {
    color: #7a5c3a;
    margin-top: 2em;
    margin-bottom: 1.2em;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: none;
    border: none;
    padding: 0;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5em 1.2em;
    margin-bottom: 2em;
    justify-content: center;
}

.menu-item {
    background: #f8f6f3;
    border-radius: 12px;
    box-shadow: none;
    padding: 1.5em 1em 1.2em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 320px;
    border: 1px solid #ece6df;
    transition: background 0.18s, border-color 0.18s;
    position: relative;
}
.menu-item:hover {
    background: #f3ede7;
    border-color: #e2d6c3;
}
.menu-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1em;
    box-shadow: none;
}
.menu-item h3 {
    font-size: 1.15em;
    font-weight: 500;
    color: #4e3c2a;
    margin: 0.4em 0 0.2em 0;
    text-align: center;
    letter-spacing: 0.01em;
}
.menu-item p {
    font-size: 1em;
    color: #7a5c3a;
    margin: 0 0 0.7em 0;
    text-align: center;
    min-height: 2.2em;
    font-style: italic;
    opacity: 0.9;
}
.menu-price {
    color: #7a5c3a;
    font-weight: 600;
    font-size: 1.05em;
    margin-top: 0.6em;
    background: #ede6dd;
    padding: 0.25em 1em;
    border-radius: 12px;
    display: inline-block;
    letter-spacing: 0.01em;
    border: none;
}
.menu-item-note ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0;
    text-align: left;
}
.menu-item-note li {
    margin-bottom: 0.5em;
    font-size: 1em;
}
.menu-note {
    font-size: 0.97em;
    color: #a98c6d;
    font-style: italic;
    margin-left: 0.5em;
}
.item-paw-print {
    display: block;
    font-size: 2.1em;
    position: absolute;
    bottom: 18px;
    right: 18px;
    transform: rotate(-25deg);
    opacity: 0.7;
    pointer-events: none;
    margin: 0;
}

#left{
    margin-left: 5em;
}


@media (max-width: 900px) {
    .menu-section {
        padding: 1em 0.5em 1.5em 0.5em;
    }
    .menu-items {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .menu-item {
        min-width: 0;
        max-width: 100%;
    }
    
    #left{
        margin-left: 0;
    }
    .contact-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-form-container,
    .contact-info {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

footer {
    background: #faf7f3;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -2px 16px rgba(80,60,40,0.06);
}

footer p {
    color: #6d5c4a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .location-section {
        padding: 1em 0.2em 1.5em 0.2em;
        border-radius: 0;
    }
    .map-container iframe {
        height: 220px;
        max-width: 100%;
    }

    .menu-paw-print {
        top: 10px;
        right: 10px;
        height: 2em;
    }

    .menu-category {
        font-size: 1.1em;
        margin-top: 1.2em;
        margin-bottom: 0.7em;
    }
    .menu-section {
        padding: 0.5em 0.2em 1em 0.2em;
        border-radius: 0;
    }
    .item-paw-print {
        font-size: 1.3em;
        bottom: 10px;
        right: 10px;
        top: auto;
    }

    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    nav a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    main {
        padding: 1rem;
    }

    .about-intro,
    .about-story,
    .about-mission,
    .about-cats {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .about-intro h1,
    .about-story h2,
    .about-mission h2,
    .about-cats h2 {
        font-size: 2rem;
    }

    .about-intro p,
    .about-story p,
    .about-mission li {
        font-size: 1rem;
    }

    .cat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .cat-gallery img {
        height: 150px;
    }

    header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 0.5rem;
        gap: 0.7rem;
    }
    .logo {
        justify-content: center;
        width: 100%;
    }

    .logo-name{
        height: 3em;
        width: 12em;
        margin-right: 2em;
    }


    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger span {
        display: block;
        width: 28px;
        height: 4px;
        margin: 4px 0;
        background: #bfa07a;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .social-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background: #faf7f3;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        box-shadow: 0 8px 24px rgba(80,60,40,0.08);
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        padding: 1rem 0 1.5rem 0;
        gap: 0.5rem;
        z-index: 1000;
        transition: all 0.3s;
    }
    .social-links.open {
        display: flex;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
    }
    .header-paw-print {
        display: none;
    }
}


@media (min-width: 600px) and (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem;
    gap: 1.2rem;
  }
  .logo {
    justify-content: center;
    width: 100%;
  }
  .main-nav {
    justify-content: center;
    width: 100%;
  }
    header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem;
    gap: 1.2rem;
  }
  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
  }
  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
  }
  .logo-img {
    height: 5em;
    width: 4.5em;
  }
  .logo-name {
    height: 2.8em;
    width: 13em;
  }
    .header-paw-print, #paw {
        display: none;
        height: 2.2rem;
        top: 55%;
        left: 52%;
        transform: translate(-50%, -50%);
        opacity: 0.7;
    }
    .social-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0rem;
        margin-right: 1.5em;
        margin-top: -1.5em;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        width: auto;
    }
    .nav-link {
        font-size: 1.15rem;
        padding: 0.5rem 1.1rem;
    }
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 2em 1.5em;
    }
    .menu-item {
        max-width: 340px;
        min-width: 0;
        padding: 1.7em 1.2em 1.7em 1.2em;
    }
    .menu-img {
        max-width: 220px;
        height: auto;
        aspect-ratio: 4/3;
        margin-bottom: 1em;
    }
    .header-paw-print, #paw{
        display: none;
    }

}

.cat-modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(34, 24, 10, 0.45);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
}
.cat-modal.show {
    display: flex;
}
.cat-modal-content {
    background: #fff;
    margin: auto;
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 8px 32px rgba(80,60,40,0.18);
    max-width: 400px;
    width: 90vw;
    text-align: center;
    position: relative;
    animation: modalIn 0.2s ease;
}
@keyframes modalIn {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.cat-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #a98c6d;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
    z-index: 2;
}
.cat-modal-close:hover {
    color: #6d5c4a;
}
#cat-modal-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(80,60,40,0.10);
}
#cat-modal-name {
    font-size: 1.7rem;
    color: #4e3c2a;
    margin-bottom: 1rem;
    font-weight: 700;
}
#cat-modal-details {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #6d5c4a;
    font-size: 1.08rem;
    margin: 0 auto;
    max-width: 320px;
}
#cat-modal-details li {
    margin-bottom: 0.7rem;
    padding-left: 1.2rem;
    position: relative;
}
#cat-modal-details li::before {
    content: "•";
    color: #a98c6d;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 0;
}
@media (max-width: 600px) {
    .cat-modal-content {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        max-width: 95vw;
    }
    #cat-modal-img {
        width: 110px;
        height: 110px;
    }
    #cat-modal-name {
        font-size: 1.2rem;
    }
    #cat-modal-details {
        font-size: 0.98rem;
    }
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.contact-form-container {
    flex: 1 1 340px;
    min-width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(80,60,40,0.07);
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4e3c2a;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.2px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1.3rem;
    border: 1.5px solid #e8dccf;
    border-radius: 12px;
    font-size: 1.08rem;
    font-family: inherit;
    background: #f8f4f0;
    color: #4e3c2a;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #a98c6d;
    outline: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(191,160,122,0.08);
}
.contact-form textarea {
    min-height: 120px;
    max-height: 300px;
}
.contact-form .cta-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 0;
    font-size: 1.13rem;
    border-radius: 30px;
    background: linear-gradient(90deg, #ba986e 0%, #a98c6d 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(191,160,122,0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}
.contact-form .cta-btn:hover {
    background: linear-gradient(90deg, #a98c6d 0%, #bfa07a 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(191,160,122,0.13);
}

.contact-info {
    flex: 1 1 300px;
    min-width: 260px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(80,60,40,0.07);
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
}
.contact-info h2 {
    margin-bottom: 1.2rem;
    color: #4e3c2a;
    font-size: 1.5rem;
    font-weight: 700;
}
.contact-info ul {
    list-style: none;
    padding: 0;
    color: #6d5c4a;
    font-size: 1.08rem;
    margin-bottom: 2rem;
}
.contact-info a {
    color: #a98c6d;
    text-decoration: underline;
    transition: color 0.2s;
}
.contact-info a:hover {
    color: #8b6f4d;
}
.map-placeholder {
    margin-top: 2rem;
    background: #f8f4f0;
    border-radius: 16px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a98c6d;
    font-size: 1.2rem;
    box-shadow: 0 2px 12px rgba(80,60,40,0.08);
}


.location-section {
    max-width: 700px;
    margin: 3em auto 2em auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 8px rgba(80,60,40,0.04);
    padding: 2.5em 1.5em 2.5em 1.5em;
    text-align: center;
}
.location-title {
    font-size: 2em;
    font-weight: 600;
    color: #6d4c2a;
    letter-spacing: 0.03em;
    margin-bottom: 0.2em;
}
.location-desc {
    color: #7a5c3a;
    font-size: 1.08em;
    margin-bottom: 1.5em;
    opacity: 0.85;
}
.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f6f3;
    border-radius: 12px;
    padding: 1em;
    box-shadow: 0 1px 6px rgba(80,60,40,0.04);
}
.map-container iframe {
    width: 100%;
    max-width: 520px;
    height: 340px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 400px) {

    .hamburger{
        margin-left: -2em;
    }
    .logo-name{
        height: 3.5em;
        width: 15em;
    }

    .logo-img{
        height: 3em;
        width: 4em;
        margin-left: 1em;
    }
    
    .logo{
        margin-right: 1em;
    }
}

/* Button styles for Add to Cart & Cart page */
.add-to-cart-btn {
    margin-top: 0.8em;
    background: linear-gradient(96deg, #c48152 0%, #ba986e 46%, #a98c6d 100%);
    color: #fff;
    border: none;
    font-size: 0.97em;
    font-weight: 600;
    border-radius: 18px;
    padding: 0.44em 1.14em 0.44em 1.14em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(191,160,122,0.14);
    transition: background 0.16s, transform 0.13s, box-shadow 0.13s;
    letter-spacing: 0.25px;
    outline: none;
    display: inline-block;
    min-width: 0;
    min-height: 0;
}
.add-to-cart-btn:focus {
    outline: 2px solid #c48152;
    outline-offset: 2px;
}
.add-to-cart-btn:hover, .add-to-cart-btn:active {
    background: linear-gradient(96deg, #a86d4c 0%, #bfa07a 80%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 5px 16px rgba(191,160,122,0.18);
}
.add-to-cart-btn:active {
    background: linear-gradient(100deg, #c48152 0%, #a98c6d 100%);
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(191,160,122,0.14);
}
.clear-cart-btn {
    background: linear-gradient(90deg, #c27350 0%, #ba986e 100%);
    color: #fff;
    border: none;
    padding: 0.6em 2.2em;
    border-radius: 26px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    margin-top: 1.5em;
    box-shadow: 0 2px 8px rgba(191,160,122,0.10);
    letter-spacing: 0.5px;
    outline: none;
    display: block;
    float: right;
    transition: background 0.22s, transform 0.16s;
}

.button:hover{
    transform: translateY(-2px) scale(1.03);
}
.clear-cart-btn:hover {
    background: linear-gradient(90deg, #a64c34 0%, #c27350 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 14px rgba(191,160,122,0.11);
}

.cancel-btn {
    background: linear-gradient(96deg, #d16363 0%, #e28b8b 80%);
    color: #fff;
    border: none;
    font-size: 0.97em;
    font-weight: 600;
    border-radius: 18px;
    padding: 0.44em 1.14em 0.44em 1.14em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(221,120,120,0.14);
    transition: background 0.16s, transform 0.13s, box-shadow 0.13s;
    letter-spacing: 0.25px;
    outline: none;
    display: inline-block;
    min-width: 0;
    min-height: 0;
    margin-left: 2em;
    transform: translateY(-2px) scale(1.03);
}
.cancel-btn:hover, .cancel-btn:active {
    background: linear-gradient(96deg, #b53a3a 0%, #d16363 80%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 5px 16px rgba(221,120,120,0.18);
}

/* Improved cart display */
