/*
Theme Name: MediStore Pro
Theme URI: https://example.com
Author: Your Name
Description: Premium Custom Ecommerce Theme
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.1
License: GPL v2 or later
Text Domain: medistore
*/

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f7f8fa;
    color:#333;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

.section{
    padding:60px 0;
}

.btn{
    display:inline-block;
    padding:12px 30px;
    background:#0d6efd;
    color:#fff;
    border-radius:6px;
    transition:.3s;
}

.btn:hover{
    background:#084298;
}