/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 50%, #55efc4 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00b894;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    background: #00b894;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 2rem;
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fffce2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: #fffce2;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #06a183, #01dfdb);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 184, 148, 0.6);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flower-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.flower-icon {
    position: absolute;
    font-size: 4rem;
    color: #55efc4;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.flower-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.flower-icon:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.flower-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6b6b6b;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.50);
}

.feature-card i {
    font-size: 3rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #7f7f7f;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #9d9d9d;
}

/* Shop Section */
.shop {
    padding: 8rem 2rem 5rem;
}

.shop h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #00b894, #55efc4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.product-price {
    font-size: 1.5rem;
    color: #00b894;
    font-weight: bold;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* Cart Styles */
.cart-section {
    padding: 8rem 2rem 5rem;
}

.cart-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b894, #55efc4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.item-image i {
    font-size: 2rem;
    color: white;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.2rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.item-price {
    font-size: 1.1rem;
    color: #00b894;
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 1rem;
}

.quantity-btn {
    background: #00b894;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity {
    font-weight: bold;
    font-size: 1.1rem;
}

.remove-btn {
    background: #fd79a8;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: #636e72;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-card h3 {
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.summary-item.total {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    font-weight: bold;
    font-size: 1.3rem;
    color: #00b894;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    padding: 0.8rem;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.delivery-info i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Checkout Styles */
.checkout-section {
    padding: 8rem 2rem 5rem;
}

.checkout-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 3rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout-form h2 {
    color: #2d3436;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2d3436;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00b894;
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.2);
}

/* Select dropdown styling */
.form-group select {
    background: white;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b894' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    padding: 0.5rem;
    background: white;
    color: #2d3436;
}

.pin-code-info {
    margin-top: 0.5rem;
}

.pin-code-info small {
    color: #00b894;
    font-size: 0.9rem;
}

.error-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #ffe6e6;
    border: 1px solid #ff9999;
    border-radius: 8px;
    color: #cc0000;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message i {
    color: #cc0000;
}

.payment-section {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
}

.qr-code i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.qr-code p {
    color: #636e72;
    margin-bottom: 0.5rem;
}

.qr-code small {
    color: #00b894;
    font-weight: bold;
    font-size: 1.1rem;
}

.file-upload {
    position: relative;
    margin: 1rem 0;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload label {
    display: block;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    border-color: #00b894;
    background: #fff;
}

.file-upload i {
    font-size: 2rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.file-upload span {
    color: #636e72;
    font-size: 1rem;
}

.file-preview {
    margin-top: 1rem;
}

.file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.submit-order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.order-summary {
    position: sticky;
    top: 100px;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-qty {
    color: #636e72;
    font-size: 0.9rem;
}

.summary-total {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00b894;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-icon {
    font-size: 4rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.error-icon {
    font-size: 4rem;
    color: #55efc4;
    margin-bottom: 1rem;
}

.modal-btn {
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 2rem 0;
    margin-top: 5rem;
}

.footer p {
    color: #636e72;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .quantity-controls {
        margin: 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-logo span {
        display: none;
    }
    
    .checkout-form,
    .cart-items,
    .summary-card {
        padding: 1.5rem;
    }
}

/* Additional animations */
.product-card,
.cart-item,
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Checkout Styles */
.checkout-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    min-height: calc(100vh - 80px);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 2rem;
}

.checkout-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3436;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b894;
}

.pin-code-info {
    margin-top: 0.5rem;
}

.pin-code-info small {
    color: #636e72;
}

.error-message {
    color: #e17055;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #ffeaa7;
    border-radius: 8px;
    border-left: 4px solid #e17055;
}

/* Payment Section */
.payment-section {
    margin-top: 2rem;
}

.qr-code-container {
    background: #f8fff9;
    border: 2px solid #00cec9;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code-container h3 {
    color: #00b894;
    margin-bottom: 1rem;
}

.qr-code {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.1);
}

.qr-code i {
    font-size: 4rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.qr-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qr-code p {
    color: #636e72;
    margin: 0.5rem 0;
}

.qr-code small {
    font-size: 1.1rem;
    color: #00b894;
    font-weight: 600;
}

/* UPI ID Styles */
.upi-id {
    background: #e8f5e8;
    border: 1px solid #55efc4;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.upi-id p {
    margin: 0;
    color: #2d3436;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.upi-id strong {
    color: #00b894;
}

.copy-upi-btn {
    background: #00b894;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-upi-btn:hover {
    background: #00a085;
    transform: translateY(-1px);
}

.copy-upi-btn i {
    margin: 0;
}

/* Payment Upload */
.payment-upload {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px dashed #55efc4;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #f8fff9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    background: #e8f5e8;
}

.file-upload label i {
    font-size: 2rem;
    color: #00b894;
    margin-bottom: 0.5rem;
}

.file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    margin-top: 1rem;
}

.submit-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

/* Order Summary in Checkout */
.order-summary .summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.1);
    position: sticky;
    top: 100px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: #2d3436;
}

.item-qty {
    color: #636e72;
    font-size: 0.9rem;
}

.item-price {
    font-weight: 600;
    color: #00b894;
}

/* Loading Spinner */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #00b894;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success and Error Icons */
.success-icon {
    font-size: 3rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.error-icon {
    font-size: 3rem;
    color: #e17055;
    margin-bottom: 1rem;
}

.modal-btn {
    background: #00b894;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
}

.modal-btn:hover {
    background: #00a085;
}

/* Mobile Payment Buttons */
.mobile-payment-container {
    background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.mobile-payment-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-payment-buttons {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.upi-pay-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    color: #2d3436;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.upi-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: white;
}

.upi-pay-btn:active {
    transform: translateY(0);
}

.upi-pay-btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.google-pay-btn i {
    color: #4285F4;
}

.phonepe-btn i {
    color: #5f259f;
}

.upi-pay-btn .amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: #00b894;
}

.payment-note {
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-note small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.payment-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.payment-divider span {
    background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
    padding: 0 1rem;
    font-weight: 600;
    position: relative;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-form,
    .order-summary .summary-card {
        padding: 1.5rem;
    }
    
    .qr-code-container {
        padding: 1.5rem;
    }
    
    .qr-code {
        padding: 1.5rem;
    }
    
    .mobile-payment-container {
        padding: 1.5rem;
    }
    
    .mobile-payment-buttons {
        grid-template-columns: 1fr;
    }
    
    .upi-pay-btn {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
}

/* Order Disabled Notice */
.order-disabled-notice {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.3);
}

.disabled-message {
    padding: 2rem;
    text-align: center;
    color: white;
}

.disabled-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.disabled-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.disabled-message p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

/* Orders Disabled Notice for Shop Page */
.orders-disabled-notice {
    background: linear-gradient(135deg, #ff6b6b, #ffa07a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
}

.orders-disabled-notice .disabled-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.orders-disabled-notice .disabled-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Disabled Add to Cart Button */
.add-to-cart-btn.disabled {
    background: #95a5a6 !important;
    color: #7f8c8d !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    transform: none !important;
    box-shadow: none !important;
}

.add-to-cart-btn.disabled:hover {
    background: #95a5a6 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Hide QR Code on Mobile Devices (Android and iPhone) */
@media only screen and (max-width: 768px) {
    body.mobile-device .qr-code {
        display: none !important;
    }
}

/* Additional mobile detection for very specific cases */
@media only screen and (max-width: 480px) {
    .qr-code {
        display: none !important;
    }
}