@charset "UTF-8";

        /* Demo Page Styling */
        

        .demo-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            color: #b7492e;
            text-align: center;
            font-size: 36px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .demo-info {
            background: #231f20;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #cccccc;
            margin-bottom: 40px;
            color: #b0ab9b;
            text-align: center;
        }

        /* Sample Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat (auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .product-card {
            background: #231f20;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #6e6e6e;
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            border-color: #797979;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(183, 73, 46, 0.4);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: #4b4b4b;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0ab9b;
            font-size: 14px;
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .product-colors {
            color: #b0ab9b;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .order-button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #b7492e 0%, #b7492e 100%);
            border: none;
            border-radius: 6px;
            color: #f5f5f3;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .order-button:hover {
            background: linear-gradient(135deg, #d05535 0%, #d05535 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(183, 73, 46, 0.5);
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
			backdrop-filter: blur(8px); 
  /* For older Webkit browsers, include the prefixed version */
  -webkit-backdrop-filter: blur(8px); 
            z-index: 9999;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Modal Container */
        .modal-container {
            background: #231f20;
            border-radius: 6px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            padding: 40px;
            max-width: 600px;
            width: 100%;
            border: 1px solid #797979;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        /* Close Button */
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: #cccccc;
            font-size: 32px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .modal-close:hover {
            color: #ffffff;
           
        }

        /* Form Styles */
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header h2 {
            color: #ffffff;
            font-size: 28px;
			font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .form-header p {
            color: #cccccc;
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #6e6e6e;
            border-radius: 6px;
            background: #4b4b4b;
            color: #f5f5f3;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #787878;
            box-shadow: 0 0 10px rgba(183, 73, 46, 0.4);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
			font-family: inherit;
        }

        select {
             cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b7492e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }

        .file-upload-wrapper {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .file-upload-wrapper input[type="file"] {
            position: absolute;
            left: -9999px;
        }

        .file-upload-label {
            display: block;
            padding: 12px 15px;
            border: 2px dashed #6e6e6e;
            border-radius: 6px;
            background: #4b4b4b;
            color: #b0ab9b;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .file-upload-label:hover {
            border-color: #b7492e;
            background: #231f20;
        }

        .file-upload-label.has-file {
            border-color: #b7492e;
            color: #f5f5f3;
        }

        .helper-text {
            font-size: 16px;
            color: #ffffff;
            margin-top: 5px;
            font-style: italic;
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
		.recaptcha-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        button[type="submit"] {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #a63523 0%, #a63523 100%);
            border: none;
            border-radius: 6px;
            color: #f5f5f3;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(183, 73, 46, 0.4);
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(183, 73, 46, 0.6);
            background: linear-gradient(135deg, #d05535 0%, #d05535 100%);
        }

        button[type="submit"]:active {
            transform: translateY(0);
        }

        .required {
            color: #b7492e;
        }

        .success-message {
            display: none;
            background: #8c6339;
            color: #ffffff;
            padding: 15px;
            border-radius: 6px;
            border: 2px solid #b7492e;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .success-message.show {
            display: block;
        }

        @media (max-width: 600px) {
            .modal-container {
                padding: 25px;
            }

            .form-header h2 {
                font-size: 22px;
            }
        }


