/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Warm Bakery Theme */
    --background: hsl(45, 40%, 96%);
    --foreground: hsl(24, 23%, 21%);
    --card: hsl(0, 27%, 98%);
    --card-foreground: hsl(25, 20%, 15%);
    --primary: hsl(37, 100%, 68%);
    --primary-foreground: hsl(45, 47%, 15%);
    --secondary: hsl(127, 100%, 79%);
    --secondary-foreground: hsl(0, 19%, 15%);
    --muted: hsl(0, 22%, 90%);
    --muted-foreground: hsl(0, 100%, 6%);
    --accent: hsl(0, 0%, 90%);
    --accent-foreground: hsl(88, 96%, 89%);
    --border: hsl(0, 0%, 100%);
    --input: hsl(45, 64%, 28%);
    --destructive: hsl(0, 0%, 100%);
    --destructive-foreground: hsla(42, 100%, 50%, 0.881);
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing and Layout */
    --container-max-width: 1200px;
    --border-radius: 0.75rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(310, 100%, 70%) 100%);
    color: var(--primary-foreground);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.2);  /* semi-transparent */
  backdrop-filter: blur(8px);
  transition: 0.3s;
}


.btn-outline:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--destructive-foreground);
}


.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: var(--card);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon img {
  width: 50px;
  height: auto;
  vertical-align: middle;
}


.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: background 0.2s ease;
}

.cart-btn:hover {
    background: var(--accent);
    backdrop-filter: blur(8px);
}

.cart-icon {
    font-size: 1.25rem;
}

.cart-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 1.25rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-mobile a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("Gambars/Pastry1.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 32rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.page-hero {
    background: var(--card);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.page-hero-content {
    text-align: center;
    max-width:92rem;
    margin: 0 auto;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background: var(--card);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: var(--background);
}

.category-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-group {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 0.25rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    border-radius: calc(var(--border-radius) - 0.125rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--foreground);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(0, 80%, 60%) 100%);
    color: var(--primary-foreground);
    font-weight: 600;
}

.filter-btn:hover:not(.active) {
    background: var(--accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Product Cards */
.product-card {
    background: var(--card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    background: var(--background);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-info.featured {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-name.featured {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.product-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--input);
}

.product-price.featured {
    font-size: 1.5rem;
}

.add-to-cart-btn {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: hsl(38, 90%, 45%);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.add-to-cart-btn.featured {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, hsl(45, 80%, 60%) 100%);
}

.add-to-cart-btn.icon-only {
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--card);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-paragraph {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.testimonial-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 4.75rem;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 20rem;
    height: 35rem;
    border-radius: 10%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-rating {
    margin-top:auto;
    color: var(--primary);
    font-size: 0.875rem;
}

.testimonial-text {
    color: var(--muted-foreground);
    font-style: italic;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--card);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-image {
    width: 81%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--muted-foreground);
}

.contact-form-container {
    display: flex;
    align-items: flex-start;
}

.contact-form-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    background: var(--muted);
    color: var(--foreground);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 5rem;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.25rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--primary);
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--background);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #d1d5db;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 24rem;
    height: 100vh;
    background: var(--card);
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: background 0.2s ease;
}

.cart-close:hover {
    background: var(--accent);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--muted-foreground);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cart-item-image {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.cart-item-price {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--accent);
    border-color: var(--primary);
}

.cart-item-quantity {
    font-size: 0.875rem;
    font-weight: 600;
    width: 2rem;
    text-align: center;
    color: var(--foreground);
}

.cart-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.cart-total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--input);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1500;
}

.chatbot-toggle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, hsl(45, 80%, 60%) 100%);
    color: var(--primary-foreground);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.15);
}

.chatbot-window {
    position: absolute;
    bottom: 4rem;
    right: 0;
    width: 20rem;
    background: var(--card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transform: translateY(1rem);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chatbot-window.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(45, 80%, 60%) 100%);
    color: var(--primary-foreground);
    padding: 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-icon {
    font-size: 1.25rem;
}

.chatbot-header h4 {
    font-weight: 600;
    color: var(--primary-foreground);
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--primary-foreground);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-subtitle {
    padding: 0 1rem;
    color: var(--primary-foreground);
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

.chatbot-messages {
    height: 16rem;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-foreground);
    flex-shrink: 0;
}

.message-content {
    background: var(--muted);
    color: var(--muted-foreground);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    max-width: 75%;
    font-size: 0.875rem;
    line-height: 1.4;
}

.user-message .message-content {
    background: var(--primary);
    color: var(--primary-foreground);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-action {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    text-align: left;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--foreground);
}

.quick-action:hover {
    background: var(--accent);
    border-color: var(--primary);
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--border);
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    background: var(--muted);
    color: var(--foreground);
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chatbot-input button {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.chatbot-input button:hover {
    background: hsl(38, 90%, 45%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.open {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-sidebar {
        width: 100vw;
    }
    
    .chatbot-window {
        width: calc(100vw - 3rem);
        right: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Loading and Animation */
.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .cart-sidebar,
    .chatbot,
    .cart-overlay {
        display: none !important;
    }
}
