@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #FAF6F0;            /* Baby cream background */
    --primary-color: #FCD9C9;       /* Pastel Warm Peach */
    --primary-hover: #F8C5AF;
    --secondary-color: #DDECE3;     /* Pastel Mint Green */
    --secondary-hover: #C5DFD0;
    --accent-color: #FFF2CE;        /* Pastel Soft Yellow */
    --accent-pink: #FAD4E2;         /* Sweet Baby Pink */
    --text-main: #4E4642;           /* Soft Muted Charcoal */
    --text-muted: #8E837E;
    --white: #FFFFFF;
    --card-shadow: 0 12px 32px rgba(181, 141, 124, 0.08);
    --hover-shadow: 0 16px 40px rgba(181, 141, 124, 0.16);
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 3px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(181, 141, 124, 0.1);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 24px rgba(181, 141, 124, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled .navbar {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 64px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 16px rgba(181, 141, 124, 0.08);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.06) rotate(3deg);
    box-shadow: 0 8px 20px rgba(181, 141, 124, 0.12);
}

header.scrolled .logo-img {
    height: 48px;
}

.logo-img-footer {
    height: 80px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 16px rgba(181, 141, 124, 0.08);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.logo-img-footer:hover {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(181, 141, 124, 0.12);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-hover);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-hover);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--secondary-color);
    color: var(--text-main);
    padding: 10px 22px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.nav-btn:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px dashed rgba(181, 141, 124, 0.3);
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary-hover);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(252, 217, 201, 0.4);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 217, 201, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 20px;
    left: 20px;
    z-index: 1;
    animation: blob-morph 8s ease-in-out infinite alternate;
}

.hero-img-container {
    position: relative;
    z-index: 2;
    width: 420px;
    height: 420px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--card-shadow);
    animation: blob-morph-img 8s ease-in-out infinite alternate;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-img-container:hover .hero-img {
    transform: scale(1.05);
}

/* Background SVGs / Shapes */
.blob-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 250px;
    height: 250px;
    background-color: var(--accent-pink);
    opacity: 0.3;
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.blob-shape-2 {
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* About / Story Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-top: 12px;
}

.about-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px dashed rgba(181, 141, 124, 0.2);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-style: solid;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: var(--card-shadow);
}

.feature-icon {
    font-size: 24px;
    background-color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-img-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 6px solid var(--bg-color);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Collection / Models Section */
.collection {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.collection-header {
    text-align: center;
    margin-bottom: 50px;
}

.collection-header .section-title::after {
    margin: 12px auto 0 auto;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(181, 141, 124, 0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.product-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background-color: #f7f7f7;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-link {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-hover);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.product-link:hover {
    color: var(--text-main);
}

/* Product Detail Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(78, 70, 66, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: var(--bg-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition-smooth);
    color: var(--text-main);
}

.modal-close:hover {
    background-color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-img-wrapper {
    height: 480px;
    background-color: #f7f7f7;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1ebd57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    fill: white;
    width: 20px;
    height: 20px;
}

/* Contact / Footer Section */
.footer-sec {
    padding: 80px 0 30px 0;
    background-color: var(--white);
    border-top: 1px solid rgba(181, 141, 124, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info-col .logo {
    margin-bottom: 20px;
}

.footer-info-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(181, 141, 124, 0.1);
}

.social-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-hover);
    padding-left: 5px;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 15px;
}

.contact-icon {
    font-size: 18px;
    color: var(--primary-hover);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--primary-hover);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(181, 141, 124, 0.1);
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    color: var(--primary-hover);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes blob-morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes blob-morph-img {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

/* Admin Styling Panel */
.admin-body {
    background-color: #F8F5F2;
    min-height: 100vh;
    padding: 40px 0;
}

.admin-header {
    background: var(--white);
    border-bottom: 2px solid #EAE1D9;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title {
    font-size: 22px;
    font-weight: 700;
    color: #4E4642;
}

.admin-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    padding: 40px;
    border: 2px solid #EAE1D9;
}

.admin-login-box {
    max-width: 420px;
    margin: 60px auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 2px solid #EAE1D9;
}

.admin-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #F0E7DE;
    padding-bottom: 12px;
}

.admin-tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.admin-tab-btn.active,
.admin-tab-btn:hover {
    background: var(--primary-color);
    color: var(--text-main);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 2px solid #ECE3D9;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    background-color: #FCFBF9;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-hover);
    background-color: var(--white);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ECE3D9;
}

.admin-table th {
    background-color: #FAF6F0;
    font-weight: 700;
    font-size: 15px;
}

.admin-table td img {
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

.admin-action-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}

.admin-action-btn.delete {
    background-color: #FAD4D4;
    color: #A83232;
}

.admin-action-btn.delete:hover {
    background-color: #F8B3B3;
}

.admin-alert {
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    font-weight: 600;
}

.admin-alert.success {
    background-color: #E2F0D9;
    color: #3B6B35;
    border: 1px solid #C4DFB4;
}

.admin-alert.danger {
    background-color: #FCE4D6;
    color: #C55A11;
    border: 1px solid #F8CBAD;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info-col {
        grid-column: span 2;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
        max-width: 500px;
        overflow-y: auto;
        max-height: 90vh;
    }
    
    .modal-img-wrapper {
        height: 300px;
    }
    
    .modal-details {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 0;
        gap: 25px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        overflow-y: auto;
    }
    
    header.scrolled .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-btn {
        width: 80%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-img-container {
        width: 320px;
        height: 320px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info-col {
        grid-column: span 1;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
    }
}
